Commit bf430386 authored by Lev Walkin's avatar Lev Walkin

informative message

parent d594771c
...@@ -177,8 +177,10 @@ main(int ac, char **av) { ...@@ -177,8 +177,10 @@ main(int ac, char **av) {
ac -= optind; ac -= optind;
av += optind; av += optind;
} else { } else {
fprintf(stderr, "%s: No input files specified\n", char *bin_name = a1c_basename(av[0]);
a1c_basename(av[0])); fprintf(stderr, "%s: No input files specified. "
"Try '%s -h' for more information\n",
bin_name, bin_name);
exit(1); exit(1);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment