summaryrefslogtreecommitdiff
path: root/src/playlist-spl.c
diff options
context:
space:
mode:
authornicklas79 <nicklas79>2009-09-28 18:20:16 +0000
committernicklas79 <nicklas79>2009-09-28 18:20:16 +0000
commit0358408fe9faa91c1c6737a785771dfaf691e101 (patch)
tree79fc8a6114e45b706e641173c5d1f0576c4af058 /src/playlist-spl.c
parenta99196ac65e034c530ea9303c74ec8b74cb8cd19 (diff)
downloadlibmtp-0358408fe9faa91c1c6737a785771dfaf691e101.tar.gz
Add DEBUG flags definition to be clean
See : LIBMTP_DEBUG_NONE LIBMTP_DEBUG_PTP LIBMTP_DEBUG_USB LIBMTP_DEBUG_PLST LIBMTP_DEBUG_DATA LIBMTP_DEBUG_ALL
Diffstat (limited to 'src/playlist-spl.c')
-rw-r--r--src/playlist-spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist-spl.c b/src/playlist-spl.c
index e6e736c..d4d5be1 100644
--- a/src/playlist-spl.c
+++ b/src/playlist-spl.c
@@ -48,7 +48,7 @@
*/
#define LIBMTP_PLST_DEBUG(format, args...) \
do { \
- if ((LIBMTP_debug & 0x02) != 0) \
+ if ((LIBMTP_debug & LIBMTP_DEBUG_PLST) != 0) \
fprintf(stdout, "LIBMTP %s[%d]: " format, __FUNCTION__, __LINE__, ##args); \
} while (0)