aboutsummaryrefslogtreecommitdiffstats
path: root/src/ncmpc.h
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-06-22 14:31:16 +0000
committerKalle Wallin <kaw@linux.se>2004-06-22 14:31:16 +0000
commita11be95c878d124007e00624df3aa34e72579d92 (patch)
tree11252f78ff63a0bee30167395979a144c7ca2e68 /src/ncmpc.h
parent025f73d1d1aa10c5758ab23b3e9359fd43503aae (diff)
downloadmpd-a11be95c878d124007e00624df3aa34e72579d92.tar.gz
mpd-a11be95c878d124007e00624df3aa34e72579d92.tar.xz
mpd-a11be95c878d124007e00624df3aa34e72579d92.zip
Make shure the dummy debug macro survives the OSX preprocessor
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1615 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ncmpc.h')
-rw-r--r--src/ncmpc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ncmpc.h b/src/ncmpc.h
index 4a2770be9..029498f03 100644
--- a/src/ncmpc.h
+++ b/src/ncmpc.h
@@ -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 */