Mercurial > hg > svcore
diff data/fileio/OggVorbisFileReader.cpp @ 1029:1ecd533a9977
Compile fix
author | Chris Cannam |
---|---|
date | Fri, 13 Feb 2015 13:29:44 +0000 |
parents | d03b3d956358 |
children | a1cd5abcb38b |
line wrap: on
line diff
--- a/data/fileio/OggVorbisFileReader.cpp Wed Jan 14 14:58:38 2015 +0000 +++ b/data/fileio/OggVorbisFileReader.cpp Fri Feb 13 13:29:44 2015 +0000 @@ -173,11 +173,11 @@ if (!reader->m_commentsRead) { const FishSoundComment *comment; - comment = fish_sound_comment_first_byname(fs, "TITLE"); + comment = fish_sound_comment_first_byname(fs, (char *)"TITLE"); if (comment && comment->value) { reader->m_title = QString::fromUtf8(comment->value); } - comment = fish_sound_comment_first_byname(fs, "ARTIST"); + comment = fish_sound_comment_first_byname(fs, (char *)"ARTIST"); if (comment && comment->value) { reader->m_maker = QString::fromUtf8(comment->value); }