diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-02-24 13:08:31 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-02-24 13:08:31 +0000 |
commit | 78aced2831fb10dca55e248bebbe094c1be6032f (patch) | |
tree | 83f4d9e2b315ff99979a6289a9bcb5d1cd9011a4 /apps/codecs | |
parent | eee06b696d33dc1f86799e92d8bfc688d847c861 (diff) |
fix yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24881 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/smaf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/smaf.c b/apps/codecs/smaf.c index 227227ada8..cd1155bf7b 100644 --- a/apps/codecs/smaf.c +++ b/apps/codecs/smaf.c @@ -314,7 +314,7 @@ next_track: codec = get_codec(format.formattag); if (codec == 0) { - DEBUGF("CODEC_ERROR: unsupport audio format: 0x%lx\n", format.formattag); + DEBUGF("CODEC_ERROR: unsupport audio format: 0x%x\n", (int)format.formattag); i = CODEC_ERROR; goto done; } |