diff options
author | Vladimír Čunát <vladimir.cunat@nic.cz> | 2018-11-21 17:58:01 +0100 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2018-11-26 15:18:23 +0100 |
commit | 9e22ec1abea86cf8f1a464646888843b38dfd1b1 (patch) | |
tree | 72c01a350cb43d176d0ce1909fa4ddfa7cac763a /contrib | |
parent | zonecut, treewide: remove incorrect arrays of knot_rdata_t (diff) | |
download | knot-resolver-9e22ec1abea86cf8f1a464646888843b38dfd1b1.tar.xz knot-resolver-9e22ec1abea86cf8f1a464646888843b38dfd1b1.zip |
treewide: use more standard variadic macros
There's still an unresolved "problem" with QRVERBOSE getting
empty variadic list sometimes, and I can't see a good way around that.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ucw/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ucw/lib.h b/contrib/ucw/lib.h index 77187933..506f09b5 100644 --- a/contrib/ucw/lib.h +++ b/contrib/ucw/lib.h @@ -118,7 +118,7 @@ * === Basic logging functions (see <<log:,Logging>> and <ucw/log.h> for more) ***/ -#define DBG(x,y...) do { } while(0) +#define DBG(x, ...) do { } while(0) #define DBG_SPOT do { } while(0) #define ASSERT(x) |