From a11be95c878d124007e00624df3aa34e72579d92 Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Tue, 22 Jun 2004 14:31:16 +0000 Subject: [PATCH] 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 --- src/ncmpc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.30.2