diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-10-12 21:50:02 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-10-12 21:50:02 +0000 |
commit | 3fafba675a7a886f43f0f0e0c4d154eab3f5b5a6 (patch) | |
tree | ee36f33df62d2327015644e2ea6021bd69e45225 /applets/applets.c | |
parent | bdbcaf7d87d95ee43b1a37b2a19415cde839c6aa (diff) | |
download | busybox-w32-3fafba675a7a886f43f0f0e0c4d154eab3f5b5a6.tar.gz busybox-w32-3fafba675a7a886f43f0f0e0c4d154eab3f5b5a6.tar.bz2 busybox-w32-3fafba675a7a886f43f0f0e0c4d154eab3f5b5a6.zip |
show_usage should use bb_default_error_retval.
git-svn-id: svn://busybox.net/trunk/busybox@11853 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index bf6b16026..ceb0d5557 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -423,7 +423,7 @@ extern void bb_show_usage (void) | |||
423 | fprintf (stderr, format_string, bb_msg_full_version, applet_using->name, | 423 | fprintf (stderr, format_string, bb_msg_full_version, applet_using->name, |
424 | usage_string); | 424 | usage_string); |
425 | 425 | ||
426 | exit (EXIT_FAILURE); | 426 | exit (bb_default_error_retval); |
427 | } | 427 | } |
428 | 428 | ||
429 | static int applet_name_compare (const void *x, const void *y) | 429 | static int applet_name_compare (const void *x, const void *y) |