add DPRINTF type checking for no-debug builds
authorFelix Fietkau <nbd@openwrt.org>
Wed, 7 Sep 2011 05:47:48 +0000 (07:47 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 7 Sep 2011 05:47:48 +0000 (07:47 +0200)
netifd.h

index 77c8719..1559c50 100644 (file)
--- a/netifd.h
+++ b/netifd.h
 #ifdef DEBUG
 #define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__)
 #else
-#define DPRINTF(...) do {} while(0)
+#define DPRINTF(format, ...) no_debug(format, ## __VA_ARGS__)
 #endif
 
+static inline void no_debug(const char *fmt, ...)
+{
+}
+
 #define __init __attribute__((constructor))
 
 struct device;