[svn-r17715] Fixed to exit failure if no command option is given.

Tested: Jam
This commit is contained in:
Albert Cheng 2009-10-21 13:19:38 -05:00
parent e0b41d0b01
commit c8f1cdae1d

View File

@ -210,7 +210,7 @@ main (int argc, const char *argv[])
/* Check for no command line parameters */
if(argc == 1) {
usage();
leave(EXIT_SUCCESS);
leave(EXIT_FAILURE);
} /* end if */
/* parse command line options */