a few cleanups

git-svn-id: https://svn.musicpd.org/mpd/trunk@53 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes
2004-02-25 17:53:48 +00:00
parent 1ff1230680
commit 46c66a2a3e
2 changed files with 10 additions and 4 deletions
+6 -2
View File
@@ -27,9 +27,13 @@
extern int logLevel;
#define ERROR(x, arg...) myfprintf(stderr, x , ##arg)
#define ERROR(x, arg...) do { \
myfprintf(stderr, x , ##arg); \
} while(0);
#define LOG(x, arg...) myfprintf(stdout, x , ##arg)
#define LOG(x, arg...) do { \
myfprintf(stdout, x , ##arg); \
} while(0);
#define SECURE(x, arg...) do { \
if(logLevel>=LOG_LEVEL_SECURE) myfprintf(stdout, x , ##arg); \