It is correct behaviours to output help and version information,
and should return 0;
When input parameter is invalid, print help information and exit.
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
error_msg_and_die("%s: not a proper device table file", optarg);
break;
case 'h':
- fprintf(stderr, helptext);
- exit(1);
+ printf(helptext);
+ exit(0);
case 'r':
case 'd': /* for compatibility with mkfs.jffs, genext2fs, etc... */
if (rootdir != default_rootdir) {
break;
case 'v':
- fprintf(stderr, "makedevs revision %.*s\n",
+ printf("makedevs revision %.*s\n",
(int) strlen(revtext) - 13, revtext + 11);
+ exit(0);
+ default:
+ fprintf(stderr, helptext);
exit(1);
}
}