diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2007-11-30 14:24:05 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2007-11-30 14:24:05 +0000 |
commit | 8b99ad39b19d3bb95ee77d4534d031e17484fc77 (patch) | |
tree | 1a27299c9a0ce79fa289b3494d02d64c3e942562 /apps/codecs | |
parent | c21180fb069345c572b3d529516d04f7d7e97a1f (diff) |
Fix warning when compiling the sim.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15858 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/wma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/wma.c b/apps/codecs/wma.c index 0f807eacda..2b9fdd76fd 100644 --- a/apps/codecs/wma.c +++ b/apps/codecs/wma.c @@ -521,7 +521,7 @@ next_track: ci->seek_complete(); goto next_track; } - DEBUGF("Seek returned %d\n", time); + DEBUGF("Seek returned %d\n", (int)time); ci->set_elapsed(elapsedtime); /*flush the wma decoder state*/ |