summaryrefslogtreecommitdiffstats
path: root/test/ipedec.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ipedec.c')
-rw-r--r--test/ipedec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ipedec.c b/test/ipedec.c
index 8059276..56236ce 100644
--- a/test/ipedec.c
+++ b/test/ipedec.c
@@ -208,11 +208,6 @@ int main(int argc, char const* argv[])
int verbose = 0;
int rows = 1088;
- if (argc == 1) {
- printf("ipedec: no input files\n");
- return 0;
- }
-
while ((getopt_ret = getopt_long(argc, (char *const *) argv, "r:cvh", long_options, &index)) != -1) {
switch (getopt_ret) {
case 'r':
@@ -232,6 +227,11 @@ int main(int argc, char const* argv[])
}
}
+ if (optind == argc) {
+ printf("ipedec: no input files\n");
+ return 1;
+ }
+
while (optind < argc)
process_file(argv[optind++], rows, clear_frame, verbose);