diff options
| author | Dave Chapman <dave@dchapman.com> | 2010-02-28 09:55:33 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2010-02-28 09:55:33 +0000 |
| commit | 9367aa3648eb7f51b35c53382c13f787fc776853 (patch) | |
| tree | 5e27145f33f9ce7dd7734979081f0c74a14355e5 /apps/codecs | |
| parent | 561cb2c4018ba6a83f742964de8cb892fac02c26 (diff) | |
| download | rockbox-9367aa3648eb7f51b35c53382c13f787fc776853.zip rockbox-9367aa3648eb7f51b35c53382c13f787fc776853.tar.gz rockbox-9367aa3648eb7f51b35c53382c13f787fc776853.tar.bz2 rockbox-9367aa3648eb7f51b35c53382c13f787fc776853.tar.xz | |
Fix 64-bit sim warning introduced in r24955
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24960 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/au.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/au.c b/apps/codecs/au.c index 5632bf7..1bcc308 100644 --- a/apps/codecs/au.c +++ b/apps/codecs/au.c @@ -222,7 +222,7 @@ next_track: codec = get_au_codec(format.formattag); if (!codec) { - DEBUGF("CODEC_ERROR: unsupport sun audio format: %lx\n", format.formattag); + DEBUGF("CODEC_ERROR: unsupport sun audio format: %x\n", format.formattag); status = CODEC_ERROR; goto done; } |