summaryrefslogtreecommitdiff
path: root/apps
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
parent4cd86c0e94ff28e18b16fb7394be356dd4145e54 (diff)
downloadrockbox-fd7002ae6c7d91218fe5e66f2eb7705528265f69.zip
rockbox-fd7002ae6c7d91218fe5e66f2eb7705528265f69.tar.gz
rockbox-fd7002ae6c7d91218fe5e66f2eb7705528265f69.tar.bz2
rockbox-fd7002ae6c7d91218fe5e66f2eb7705528265f69.tar.xz
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')
-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 af2a301..f39d3f1 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,
&& (id != MP4_qt) && (id != MP4_3gp6))
{
DEBUGF("Unknown MP4 file type: '%c%c%c%c'\n",
- id >> 24 & 0xff, id >> 16 & 0xff, id >> 8 & 0xff,
- id & 0xff);
+ (int)(id >> 24 & 0xff), (int)(id >> 16 & 0xff),
+ (int)(id >> 8 & 0xff), (int)(id & 0xff));
return false;
}
}