Macro was wrong, name(void) vs name(x), and apparently gcc 2.95 cares about
authorRob Landley <rob@landley.net>
Wed, 7 Dec 2005 23:17:28 +0000 (23:17 -0000)
committerRob Landley <rob@landley.net>
Wed, 7 Dec 2005 23:17:28 +0000 (23:17 -0000)
matching up macro arguments even when the macro substitutes to nothing...

applets/applets.c

index 1a261d9..dde75f2 100644 (file)
@@ -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