diff options
Diffstat (limited to '')
-rw-r--r-- | bin/pngo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/pngo.c b/bin/pngo.c index c4b3ed9b..f8359d3a 100644 --- a/bin/pngo.c +++ b/bin/pngo.c @@ -697,10 +697,10 @@ int main(int argc, char *argv[]) { int opt; while (0 < (opt = getopt(argc, argv, "co:v"))) { switch (opt) { - case 'c': stdio = true; break; - case 'o': output = optarg; break; - case 'v': verbose = true; break; - default: return EX_USAGE; + break; case 'c': stdio = true; + break; case 'o': output = optarg; + break; case 'v': verbose = true; + break; default: return EX_USAGE; } } |