From a6297f81f373d251bccd91d0079e731874b605db Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Fri, 18 Aug 2006 04:10:41 +0000 Subject: Cast isostr to char * to fix yet another warning git-svn-id: https://svn.musicpd.org/mpd/trunk@4655 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tag.c b/src/tag.c index 52e012237..68fd2dbab 100644 --- a/src/tag.c +++ b/src/tag.c @@ -165,7 +165,7 @@ static MpdTag *getID3Info(struct id3_tag *tag, char *id, int type, MpdTag * mpdT if (mpd_unlikely(!isostr)) continue; setCharSetConversion("UTF-8", encoding); - utf8 = (id3_utf8_t *)convStrDup(isostr); + utf8 = (id3_utf8_t *)convStrDup((char *)isostr); if (!utf8) { DEBUG("Unable to convert %s string to UTF-8: " "'%s'\n", encoding, isostr); -- cgit v1.2.3