show_usage should use bb_default_error_retval.

This commit is contained in:
Rob Landley 2005-10-12 21:50:02 +00:00
parent e4164b5666
commit 046d6e7a95

View File

@ -423,7 +423,7 @@ extern void bb_show_usage (void)
fprintf (stderr, format_string, bb_msg_full_version, applet_using->name,
usage_string);
exit (EXIT_FAILURE);
exit (bb_default_error_retval);
}
static int applet_name_compare (const void *x, const void *y)