aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-04-13 02:38:09 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-04-13 02:38:09 +0000
commitf765c262754bdb181cffa686c9bdf19b6ae184bb (patch)
tree4542f9c8fa2519b01146054407bddb5e78d9b98c /src/tag.c
parent375e3ffed496c995383156f9675fa95f145e05bf (diff)
downloadmpd-f765c262754bdb181cffa686c9bdf19b6ae184bb.tar.gz
mpd-f765c262754bdb181cffa686c9bdf19b6ae184bb.tar.xz
mpd-f765c262754bdb181cffa686c9bdf19b6ae184bb.zip
fix a small booboo and add some debugging stuff
git-svn-id: https://svn.musicpd.org/mpd/trunk@708 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tag.c b/src/tag.c
index 2fabf5639..63a7719db 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -25,6 +25,7 @@
#include "aac_decode.h"
#include "utils.h"
#include "utf8.h"
+#include "log.h"
#include <sys/stat.h>
#include <stdlib.h>
@@ -61,6 +62,7 @@ void printMpdTag(FILE * fp, MpdTag * tag) {
#define fixUtf8(str) { \
if(str && !validUtf8String(str)) { \
char * temp; \
+ DEBUG("not valid utf8 in tag: %s\n",str); \
temp = asciiStrToUtf8Dup(str); \
free(str); \
str = temp; \