summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/helper.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/helper.h b/include/helper.h
index 02ff3df..329fd2d 100644
--- a/include/helper.h
+++ b/include/helper.h
@@ -99,6 +99,12 @@ enum ip_conntrack_info {
#define CTINFO2DIR(ctinfo) ((ctinfo) >= IP_CT_IS_REPLY ? IP_CT_DIR_REPLY : IP_CT_DIR_ORIGINAL)
-#define pr_debug printf
+#if 0
+#define pr_debug(fmt, arg...) \
+ printf(fmt, ##arg)
+#else
+#define pr_debug(fmt, arg...) \
+ ({ if (0) printf(fmt, ##arg); 0; })
+#endif
#endif