[git commit master] free: silence warning about unused argv

Denys Vlasenko vda.linux at googlemail.com
Fri Feb 26 08:28:30 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=7e7728cd66482f6898e3896bf05a12f0f8137e79
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 procps/free.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/procps/free.c b/procps/free.c
index a941b62..473d70b 100644
--- a/procps/free.c
+++ b/procps/free.c
@@ -12,7 +12,7 @@
 #include "libbb.h"
 
 int free_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int free_main(int argc UNUSED_PARAM, char **argv)
+int free_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
 {
 	struct sysinfo info;
 	unsigned mem_unit;
-- 
1.6.3.3



More information about the busybox-cvs mailing list