examples: print the usage message when a required option is missing
authorAntonio Ospite <ospite@studenti.unina.it>
Sun, 26 May 2013 22:05:00 +0000 (00:05 +0200)
committerAntonio Ospite <ospite@studenti.unina.it>
Sun, 26 May 2013 22:05:00 +0000 (00:05 +0200)
While at it specify which option is missing when picoproj fails..

examples/am7xxx-play.c
examples/picoproj.c

index 38812a4..e958eee 100644 (file)
@@ -777,7 +777,8 @@ int main(int argc, char *argv[])
        }
 
        if (input_path == NULL) {
        }
 
        if (input_path == NULL) {
-               fprintf(stderr, "The -i option must always be passed\n");
+               fprintf(stderr, "The -i option must always be passed\n\n");
+               usage(argv[0]);
                ret = -EINVAL;
                goto out;
        }
                ret = -EINVAL;
                goto out;
        }
index 8341527..610e148 100644 (file)
@@ -168,7 +168,8 @@ int main(int argc, char *argv[])
        }
 
        if (filename[0] == '\0') {
        }
 
        if (filename[0] == '\0') {
-               fprintf(stderr, "An image file MUST be specified.\n");
+               fprintf(stderr, "An image file MUST be specified with the -f option.\n\n");
+               usage(argv[0]);
                exit_code = EXIT_FAILURE;
                goto out;
        }
                exit_code = EXIT_FAILURE;
                goto out;
        }