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