From: Kalle Wallin Date: Tue, 22 Jun 2004 14:31:16 +0000 (+0000) Subject: Make shure the dummy debug macro survives the OSX preprocessor X-Git-Tag: v0.12_alpha1~498 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a11be95c878d124007e00624df3aa34e72579d92;p=ncmpc.git 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 --- diff --git a/src/ncmpc.h b/src/ncmpc.h index 4a2770b..029498f 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 */