changeset 1029:1ecd533a9977

Compile fix
author Chris Cannam
date Fri, 13 Feb 2015 13:29:44 +0000
parents abe13fe10ed6
children 920699b6989d
files data/fileio/OggVorbisFileReader.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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);
         }