kwo pushed a commit to branch master. http://git.enlightenment.org/legacy/imlib2.git/commit/?id=f334da795912c42d336174d4fa0a60b91e8e838d
commit f334da795912c42d336174d4fa0a60b91e8e838d Author: Kim Woelders <k...@woelders.dk> Date: Mon Feb 28 17:54:49 2022 +0100 test: Command line options tweak --- test/test.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test.cpp b/test/test.cpp index 4d6a703..54e4530 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -16,11 +16,12 @@ main(int argc, char **argv) s = argv[0]; if (*s++ != '-') break; - switch (*s) + again: + switch (*s++) { case 'd': debug++; - break; + goto again; } } --