summaryrefslogtreecommitdiff
path: root/apps/codecs/shorten.c
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@rockbox.org>2006-03-24 14:02:27 +0000
committerBrandon Low <lostlogic@rockbox.org>2006-03-24 14:02:27 +0000
commitc76904be53352ec1e7a743de1e7ea2ce51b513d2 (patch)
tree0387894965d38baee56c7c283dad172a621f9681 /apps/codecs/shorten.c
parent12f3fec388ae56f8fb2e50b681dbde81d4669208 (diff)
downloadrockbox-c76904be53352ec1e7a743de1e7ea2ce51b513d2.tar.gz
rockbox-c76904be53352ec1e7a743de1e7ea2ce51b513d2.zip
Fix warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9230 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/shorten.c')
-rw-r--r--apps/codecs/shorten.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/shorten.c b/apps/codecs/shorten.c
index 6053742562..2cfb4c9e3a 100644
--- a/apps/codecs/shorten.c
+++ b/apps/codecs/shorten.c
@@ -49,7 +49,7 @@ enum codec_status codec_start(struct codec_api* api)
49 uint32_t elapsedtime; 49 uint32_t elapsedtime;
50 int8_t *buf; 50 int8_t *buf;
51 int consumed, res, nsamples; 51 int consumed, res, nsamples;
52 long bytesleft; 52 size_t bytesleft;
53 53
54 /* Generic codec initialisation */ 54 /* Generic codec initialisation */
55 rb = api; 55 rb = api;