summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-06-28 07:37:27 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-06-28 07:37:27 +0000
commit7b945c511788f2efa89316dbe479c583cfcefd4a (patch)
tree02d90804554f90781c00c372bdbdc5510e3531ca /apps
parentb00ced79799491cc152b5a713887d90bb6ffeef4 (diff)
downloadrockbox-7b945c511788f2efa89316dbe479c583cfcefd4a.zip
rockbox-7b945c511788f2efa89316dbe479c583cfcefd4a.tar.gz
rockbox-7b945c511788f2efa89316dbe479c583cfcefd4a.tar.bz2
rockbox-7b945c511788f2efa89316dbe479c583cfcefd4a.tar.xz
unsigned ints are used for song length etc
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1241 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index c9fb923..51add88 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -116,7 +116,7 @@ void wps_show(void)
{
static bool playing = true;
struct mp3entry* id3 = mpeg_current_track();
- int lastlength=0, lastsize=0, lastrate=0;
+ unsigned int lastlength=0, lastsize=0, lastrate=0;
int lastartist=0, lastalbum=0, lasttitle=0;
while ( 1 ) {