diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 13:16:08 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 13:16:08 +0100 |
commit | a355da07756e529c112249653ed5af0e2d910728 (patch) | |
tree | 3b36dd1ec8618a39c8324bcfdca77f6f8f497a18 /coreutils/sync.c | |
parent | a4899efd03d2fdaaf3f581d89a7a4844832d3fbb (diff) | |
download | busybox-w32-a355da07756e529c112249653ed5af0e2d910728.tar.gz busybox-w32-a355da07756e529c112249653ed5af0e2d910728.tar.bz2 busybox-w32-a355da07756e529c112249653ed5af0e2d910728.zip |
*: make 2 more "int argc"'s unused; more saved if !DESKTOP
function old new delta
sync_main 18 20 +2
tty_main 90 87 -3
iprule_list 83 79 -4
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/sync.c')
-rw-r--r-- | coreutils/sync.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/sync.c b/coreutils/sync.c index f00a3d075..9016655e0 100644 --- a/coreutils/sync.c +++ b/coreutils/sync.c | |||
@@ -14,10 +14,10 @@ | |||
14 | /* This is a NOFORK applet. Be very careful! */ | 14 | /* This is a NOFORK applet. Be very careful! */ |
15 | 15 | ||
16 | int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 16 | int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
17 | int sync_main(int argc, char **argv UNUSED_PARAM) | 17 | int sync_main(int argc UNUSED_PARAM, char **argv) |
18 | { | 18 | { |
19 | /* coreutils-6.9 compat */ | 19 | /* coreutils-6.9 compat */ |
20 | bb_warn_ignoring_args(argc - 1); | 20 | bb_warn_ignoring_args(argv[1]); |
21 | 21 | ||
22 | sync(); | 22 | sync(); |
23 | 23 | ||