X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=mp3_afh.c;h=4764d3ceb8c9de0d6f07d001dc89e15fd17dc26a;hb=652128ed748840a22d4dcb85c1ac54bc95fdc33d;hp=9ef5dffb76a6c46542d827d3674e202ee27204a9;hpb=fd7ddaebab6613627a070e8867ace2f2eb3d4cc3;p=paraslash.git diff --git a/mp3_afh.c b/mp3_afh.c index 9ef5dffb..4764d3ce 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -280,7 +280,7 @@ static void mp3_get_id3(unsigned char *map, off_t numbytes, off_t *fpos) if (numbytes < 128) return; *fpos = numbytes - 128; - if (strncmp("TAG", map + *fpos, 3)) { + if (strncmp("TAG", (char *) map + *fpos, 3)) { PARA_INFO_LOG("%s", "no id3 tag\n"); return; }