appletlib: fix "warning: unused variable applet_no"

Signed-off-by: Tomas Paukrt <tomaspaukrt@email.cz>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
master
Tomas Paukrt 2023-04-09 10:18:51 +02:00 committed by Denys Vlasenko
parent 7362d29794
commit 85e4805ae9
1 changed files with 1 additions and 1 deletions

View File

@ -918,7 +918,7 @@ int busybox_main(int argc UNUSED_PARAM, char **argv)
# endif
# if NUM_APPLETS > 0
void FAST_FUNC show_usage_if_dash_dash_help(int applet_no, char **argv)
void FAST_FUNC show_usage_if_dash_dash_help(int applet_no UNUSED_PARAM, char **argv)
{
/* Special case. POSIX says "test --help"
* should be no different from e.g. "test --foo".