diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-03-20 13:53:23 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-03-20 13:53:23 +0000 |
commit | 3354531614340b9a6b32cbf1b1d9b29a7c0b6513 (patch) | |
tree | d37754dba1cbd191911c43af23084d22fd0360ea /apps/codecs/aac.c | |
parent | e693bc0f5de6c672246f9987e2cfc2615851fabd (diff) |
More logf fixes. speex.c wants to format 64bit args so I didn't change that one nor add any formatting for that.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12858 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/aac.c')
-rw-r--r-- | apps/codecs/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/aac.c b/apps/codecs/aac.c index 7c64bc9a31..11a9d2888d 100644 --- a/apps/codecs/aac.c +++ b/apps/codecs/aac.c @@ -200,7 +200,7 @@ next_track: err = CODEC_OK; done: - LOGF("AAC: Decoded %d samples, %d frames\n", sound_samples_done); + LOGF("AAC: Decoded %lu samples\n", sound_samples_done); if (ci->request_next_track()) goto next_track; |