summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaforge <laforge>2000-12-06 08:11:24 +0000
committerlaforge <laforge>2000-12-06 08:11:24 +0000
commitbcaacc701e4ae5852bcad8d0fe09f8e8702a80c0 (patch)
tree20a9b71dbe89250443d12a977decb1637d7a656a
parentfa9406e929b848b9dcfd9de0053c08edbdd74d1c (diff)
preprocessor macro syntax
-rw-r--r--iptables-restore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iptables-restore.c b/iptables-restore.c
index 5e01720..088270a 100644
--- a/iptables-restore.c
+++ b/iptables-restore.c
@@ -14,9 +14,9 @@
#include "libiptc/libiptc.h"
#ifdef DEBUG
-#define DEBUGP(x, args ...) fprintf(stderr, x, ## args)
+#define DEBUGP(x, args...) fprintf(stderr, x, ## args)
#else
-#define DEBUGP(x, args ...)
+#define DEBUGP(x, args...)
#endif
/* Keeping track of external matches and targets. */