Change type of isostr to fix warning

git-svn-id: https://svn.musicpd.org/mpd/trunk@4654 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2006-08-18 04:08:44 +00:00
parent 459e096581
commit 7c3a5596fd

View File

@ -138,10 +138,10 @@ static MpdTag *getID3Info(struct id3_tag *tag, char *id, int type, MpdTag * mpdT
struct id3_frame const *frame;
id3_ucs4_t const *ucs4;
id3_utf8_t *utf8;
id3_latin1_t *isostr;
union id3_field const *field;
unsigned int nstrings;
int i;
char *isostr;
char *encoding;
frame = id3_tag_findframe(tag, id, 0);