diff options
Diffstat (limited to 'cg-base.c')
-rw-r--r-- | cg-base.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -572,7 +572,9 @@ main(int argc, char *argv[]) } opt[0] = *args++; opt[2] = '\0'; - if ((*opt != '-') && (*opt != '+')) + if (*opt != '-' && *opt != '+') + break; + if (!*args) break; while (*args) { opt[1] = *args++; |