Fix warning:
procps/ps.c: In function `ps_main':
procps/ps.c:343: warning: unused variable `i'
Cheers,
--
Cristian
Index: ps.c
===================================================================
--- ps.c (revision 18981)
+++ ps.c (working copy)
@@ -340,6 +340,9 @@
int ps_main(int argc, char **argv)
{
procps_status_t *p = NULL;
+#if ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX
+ int i;
+#endif
int len;
SKIP_SELINUX(const) int use_selinux = 0;
USE_SELINUX(int i;)
_______________________________________________
busybox mailing list
[email protected]
http://busybox.net/cgi-bin/mailman/listinfo/busybox