summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 }