aboutsummaryrefslogtreecommitdiffstats
path: root/src/ncmpc.h
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-07-03 13:21:26 +0000
committerKalle Wallin <kaw@linux.se>2004-07-03 13:21:26 +0000
commit1c515ff7791fd186dc82e80134ac47273c43d442 (patch)
treeefadd50101726db1c78446a53684a57b1cd03a1e /src/ncmpc.h
parentbb2b7a65ed6ce964527e07843ec0ed86f0b45220 (diff)
downloadmpd-1c515ff7791fd186dc82e80134ac47273c43d442.tar.gz
mpd-1c515ff7791fd186dc82e80134ac47273c43d442.tar.xz
mpd-1c515ff7791fd186dc82e80134ac47273c43d442.zip
Replaced the debug macro with a function
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1780 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ncmpc.h')
-rw-r--r--src/ncmpc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ncmpc.h b/src/ncmpc.h
index 029498f03..4118456a1 100644
--- a/src/ncmpc.h
+++ b/src/ncmpc.h
@@ -6,7 +6,7 @@
#endif
#ifdef DEBUG
-#define D(format, args...) fprintf(stderr, format, ##args)
+void D(char *format, ...);
#else
#define D(...)
#endif