aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-28 09:45:07 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-28 09:45:07 +0000
commitb585c1272598e5210247cb97220146be05af33e2 (patch)
tree4028fd675c49b330e9327603bdbe1142c41ec041
parentac33ce8b9a72d0ed0a4a32e98917cb097d74fffd (diff)
downloadbusybox-w32-b585c1272598e5210247cb97220146be05af33e2.tar.gz
busybox-w32-b585c1272598e5210247cb97220146be05af33e2.tar.bz2
busybox-w32-b585c1272598e5210247cb97220146be05af33e2.zip
- remove warning about "'static' is not at beginning of declaration".
git-svn-id: svn://busybox.net/trunk/busybox@11947 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--applets/applets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/applets.c b/applets/applets.c
index ceb0d5557..1a261d9a0 100644
--- a/applets/applets.c
+++ b/applets/applets.c
@@ -64,7 +64,7 @@ const size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);
64#define CONFIG_FILE "/etc/busybox.conf" 64#define CONFIG_FILE "/etc/busybox.conf"
65 65
66/* applets [] is const, so we have to define this "override" structure */ 66/* applets [] is const, so we have to define this "override" structure */
67struct BB_suid_config 67static struct BB_suid_config
68{ 68{
69 struct BB_applet *m_applet; 69 struct BB_applet *m_applet;
70 70
@@ -73,7 +73,7 @@ struct BB_suid_config
73 mode_t m_mode; 73 mode_t m_mode;
74 74
75 struct BB_suid_config *m_next; 75 struct BB_suid_config *m_next;
76} static *suid_config; 76} *suid_config;
77 77
78static int suid_cfg_readable; 78static int suid_cfg_readable;
79 79