diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-28 09:45:07 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-28 09:45:07 +0000 |
commit | 6973abcfa83a7fa51c963abc9040c8fc9a5af3a9 (patch) | |
tree | 4028fd675c49b330e9327603bdbe1142c41ec041 /applets | |
parent | 1b751c894b520846af8575d09187ce342e88778c (diff) | |
download | busybox-w32-6973abcfa83a7fa51c963abc9040c8fc9a5af3a9.tar.gz busybox-w32-6973abcfa83a7fa51c963abc9040c8fc9a5af3a9.tar.bz2 busybox-w32-6973abcfa83a7fa51c963abc9040c8fc9a5af3a9.zip |
- remove warning about "'static' is not at beginning of declaration".
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 4 |
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 */ |
67 | struct BB_suid_config | 67 | static 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 | ||
78 | static int suid_cfg_readable; | 78 | static int suid_cfg_readable; |
79 | 79 | ||