diff options
author | Rob Landley <rob@landley.net> | 2005-12-07 23:17:28 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-07 23:17:28 +0000 |
commit | cc59aae65f3d0c4537c31fbfea570bc1abfadf9b (patch) | |
tree | 573f98848301deca44ceee5c300a61038f4cb641 /applets | |
parent | 07fffc5add7adf36e7a3cdf626ef4c28b81f404c (diff) | |
download | busybox-cc59aae65f3d0c4537c31fbfea570bc1abfadf9b.tar.gz |
Macro was wrong, name(void) vs name(x), and apparently gcc 2.95 cares about
matching up macro arguments even when the macro substitutes to nothing...
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index 1a261d9a0..dde75f236 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -330,7 +330,7 @@ static void parse_config_file(void) } #else -#define parse_config_file(x) +#define parse_config_file() #endif /* CONFIG_FEATURE_SUID_CONFIG */ #ifdef CONFIG_FEATURE_SUID |