- remove warning about "'static' is not at beginning of declaration".
This commit is contained in:
parent
1b751c894b
commit
6973abcfa8
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ const size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);
|
||||||
#define CONFIG_FILE "/etc/busybox.conf"
|
#define CONFIG_FILE "/etc/busybox.conf"
|
||||||
|
|
||||||
/* applets [] is const, so we have to define this "override" structure */
|
/* 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;
|
struct BB_applet *m_applet;
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@ struct BB_suid_config
|
||||||
mode_t m_mode;
|
mode_t m_mode;
|
||||||
|
|
||||||
struct BB_suid_config *m_next;
|
struct BB_suid_config *m_next;
|
||||||
} static *suid_config;
|
} *suid_config;
|
||||||
|
|
||||||
static int suid_cfg_readable;
|
static int suid_cfg_readable;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue