projects
/
oweals
/
netifd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8d44d5
)
add DPRINTF type checking for no-debug builds
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 7 Sep 2011 05:47:48 +0000
(07:47 +0200)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 7 Sep 2011 05:47:48 +0000
(07:47 +0200)
netifd.h
patch
|
blob
|
history
diff --git
a/netifd.h
b/netifd.h
index 77c8719d17cf7d7b8fc1a2403f3bebabed4e0b5a..1559c50efcaf76de28d01e748363f1794aa01e93 100644
(file)
--- a/
netifd.h
+++ b/
netifd.h
@@
-16,9
+16,13
@@
#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;