diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-28 07:37:27 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-28 07:37:27 +0000 |
| commit | 7b945c511788f2efa89316dbe479c583cfcefd4a (patch) | |
| tree | 02d90804554f90781c00c372bdbdc5510e3531ca /apps | |
| parent | b00ced79799491cc152b5a713887d90bb6ffeef4 (diff) | |
| download | rockbox-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ) { |