From c0a871d98d351623f82c927b8850c2b04acf36d2 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Wed, 18 Jul 2012 16:46:11 +0200 Subject: Issue `no input files` also with options set --- test/ipedec.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test') 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); -- cgit v1.2.3