summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2008-07-26 15:41:50 +0000
committerDominik Wenger <domonoky@googlemail.com>2008-07-26 15:41:50 +0000
commitec0177dd121287c6c9ac351c981358468dab1087 (patch)
treec004d987a8dbf29ce02bb1634087be8271ca3a26 /apps
parent49d318732f3aa110094150d10f61769242fc9ffe (diff)
downloadrockbox-ec0177dd121287c6c9ac351c981358468dab1087.tar.gz
rockbox-ec0177dd121287c6c9ac351c981358468dab1087.zip
Asap: fix a warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18124 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/asap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/asap.c b/apps/codecs/asap.c
index 28babdf38e..31b2482ce3 100644
--- a/apps/codecs/asap.c
+++ b/apps/codecs/asap.c
@@ -52,7 +52,7 @@ next_track:
52 codec_set_replaygain(ci->id3); 52 codec_set_replaygain(ci->id3);
53 53
54 int bytes_done =0; 54 int bytes_done =0;
55 int filesize; 55 size_t filesize;
56 ci->seek_buffer(0); 56 ci->seek_buffer(0);
57 module = ci->request_buffer(&filesize, ci->filesize); 57 module = ci->request_buffer(&filesize, ci->filesize);
58 if (!module || (size_t)filesize < (size_t)ci->filesize) 58 if (!module || (size_t)filesize < (size_t)ci->filesize)