*: 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>
This commit is contained in:
Denys Vlasenko
2010-01-04 13:16:08 +01:00
parent a4899efd03
commit a355da0775
7 changed files with 20 additions and 15 deletions

View File

@ -14,10 +14,10 @@
/* This is a NOFORK applet. Be very careful! */
int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int sync_main(int argc, char **argv UNUSED_PARAM)
int sync_main(int argc UNUSED_PARAM, char **argv)
{
/* coreutils-6.9 compat */
bb_warn_ignoring_args(argc - 1);
bb_warn_ignoring_args(argv[1]);
sync();