diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-08-18 04:10:41 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-08-18 04:10:41 +0000 |
commit | a6297f81f373d251bccd91d0079e731874b605db (patch) | |
tree | c1b834d28864152919858ab95ffb51996ab0ab44 | |
parent | 7c3a5596fd5fa2747f7f0692f42525404e57e183 (diff) | |
download | mpd-a6297f81f373d251bccd91d0079e731874b605db.tar.gz mpd-a6297f81f373d251bccd91d0079e731874b605db.tar.xz mpd-a6297f81f373d251bccd91d0079e731874b605db.zip |
Cast isostr to char * to fix yet another warning
git-svn-id: https://svn.musicpd.org/mpd/trunk@4655 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |