diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-28 15:18:53 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-28 15:18:53 +0100 |
commit | e992bae6f9adf3718c6263a36c004ead1c7272a8 (patch) | |
tree | f0bc9e4fa145f58ab3f9838902e09f9cfba29648 /miscutils/raidautorun.c | |
parent | 86cfb70ca5f2bde11f2d071bc59db75291d8552f (diff) | |
download | busybox-w32-e992bae6f9adf3718c6263a36c004ead1c7272a8.tar.gz busybox-w32-e992bae6f9adf3718c6263a36c004ead1c7272a8.tar.bz2 busybox-w32-e992bae6f9adf3718c6263a36c004ead1c7272a8.zip |
*: remove a few more cases of argc usage. -89 bytes.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/raidautorun.c')
-rw-r--r-- | miscutils/raidautorun.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/miscutils/raidautorun.c b/miscutils/raidautorun.c index a2a852bbf..113e49ff2 100644 --- a/miscutils/raidautorun.c +++ b/miscutils/raidautorun.c | |||
@@ -14,12 +14,8 @@ | |||
14 | #include <linux/raid/md_u.h> | 14 | #include <linux/raid/md_u.h> |
15 | 15 | ||
16 | int raidautorun_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 16 | int raidautorun_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
17 | int raidautorun_main(int argc, char **argv) | 17 | int raidautorun_main(int argc UNUSED_PARAM, char **argv) |
18 | { | 18 | { |
19 | if (argc != 2) | 19 | xioctl(xopen(single_argv(argv), O_RDONLY), RAID_AUTORUN, NULL); |
20 | bb_show_usage(); | ||
21 | |||
22 | xioctl(xopen(argv[1], O_RDONLY), RAID_AUTORUN, NULL); | ||
23 | |||
24 | return EXIT_SUCCESS; | 20 | return EXIT_SUCCESS; |
25 | } | 21 | } |