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 | |
parent | 07fffc5add7adf36e7a3cdf626ef4c28b81f404c (diff) | |
download | busybox-w32-cc59aae65f3d0c4537c31fbfea570bc1abfadf9b.tar.gz busybox-w32-cc59aae65f3d0c4537c31fbfea570bc1abfadf9b.tar.bz2 busybox-w32-cc59aae65f3d0c4537c31fbfea570bc1abfadf9b.zip |
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...
-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) | |||
330 | } | 330 | } |
331 | 331 | ||
332 | #else | 332 | #else |
333 | #define parse_config_file(x) | 333 | #define parse_config_file() |
334 | #endif /* CONFIG_FEATURE_SUID_CONFIG */ | 334 | #endif /* CONFIG_FEATURE_SUID_CONFIG */ |
335 | 335 | ||
336 | #ifdef CONFIG_FEATURE_SUID | 336 | #ifdef CONFIG_FEATURE_SUID |