Code

Make shure the dummy debug macro survives the OSX preprocessor
authorKalle Wallin <kaw@linux.se>
Tue, 22 Jun 2004 14:31:16 +0000 (14:31 +0000)
committerKalle Wallin <kaw@linux.se>
Tue, 22 Jun 2004 14:31:16 +0000 (14:31 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1615 09075e82-0dd4-0310-85a5-a0d7c8717e4f

src/ncmpc.h

index 4a2770be948d308ee618ba1688c5e3e9bdd74b86..029498f03469549b8d3a4a406ca935a97605402f 100644 (file)
@@ -6,9 +6,9 @@
 #endif
 
 #ifdef DEBUG
-#define D(x, args...) fprintf(stderr, x,  ##args)
+#define D(format, args...) fprintf(stderr, format,  ##args)
 #else
-#define D(x,...)
+#define D(...)
 #endif
 
 /* i18n */