svn commit: trunk/busybox/applets

aldot at busybox.net aldot at busybox.net
Fri Oct 28 09:45:16 UTC 2005


Author: aldot
Date: 2005-10-28 02:45:07 -0700 (Fri, 28 Oct 2005)
New Revision: 11947

Log:
- remove warning about "'static' is not at beginning of declaration".


Modified:
   trunk/busybox/applets/applets.c


Changeset:
Modified: trunk/busybox/applets/applets.c
===================================================================
--- trunk/busybox/applets/applets.c	2005-10-28 09:24:33 UTC (rev 11946)
+++ trunk/busybox/applets/applets.c	2005-10-28 09:45:07 UTC (rev 11947)
@@ -64,7 +64,7 @@
 #define CONFIG_FILE "/etc/busybox.conf"
 
 /* applets [] is const, so we have to define this "override" structure */
-struct BB_suid_config
+static struct BB_suid_config
 {
   struct BB_applet *m_applet;
 
@@ -73,7 +73,7 @@
   mode_t m_mode;
 
   struct BB_suid_config *m_next;
-} static *suid_config;
+} *suid_config;
 
 static int suid_cfg_readable;
 




More information about the busybox-cvs mailing list