summaryrefslogtreecommitdiff
path: root/apps/metadata
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-05-16 02:06:22 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-05-16 02:06:22 +0000
commitfd7002ae6c7d91218fe5e66f2eb7705528265f69 (patch)
treeaa4323ba227657e22c8594dfabb5118dfd4ed3b8 /apps/metadata
parent4cd86c0e94ff28e18b16fb7394be356dd4145e54 (diff)
downloadrockbox-fd7002ae6c7d91218fe5e66f2eb7705528265f69.tar.gz
rockbox-fd7002ae6c7d91218fe5e66f2eb7705528265f69.zip
Attempt to fix yellow on sims (can't reproduce on my system).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20954 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata')
-rw-r--r--apps/metadata/mp4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/metadata/mp4.c b/apps/metadata/mp4.c
index af2a301e73..f39d3f138e 100644
--- a/apps/metadata/mp4.c
+++ b/apps/metadata/mp4.c
@@ -570,8 +570,8 @@ static bool read_mp4_container(int fd, struct mp3entry* id3,
570 && (id != MP4_qt) && (id != MP4_3gp6)) 570 && (id != MP4_qt) && (id != MP4_3gp6))
571 { 571 {
572 DEBUGF("Unknown MP4 file type: '%c%c%c%c'\n", 572 DEBUGF("Unknown MP4 file type: '%c%c%c%c'\n",
573 id >> 24 & 0xff, id >> 16 & 0xff, id >> 8 & 0xff, 573 (int)(id >> 24 & 0xff), (int)(id >> 16 & 0xff),
574 id & 0xff); 574 (int)(id >> 8 & 0xff), (int)(id & 0xff));
575 return false; 575 return false;
576 } 576 }
577 } 577 }