Removed a warning

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3667 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-05-09 22:05:26 +00:00
parent 2ce9ba58ad
commit f70a41cdc6

View file

@ -90,7 +90,7 @@ int rolo_load(char* filename)
lseek(fd, FIRMWARE_OFFSET_FILE_DATA, SEEK_SET);
/* verify that file can be read and descrambled */
if ((mp3buf + (2*length)+4) >= &mp3end) {
if ((mp3buf + (2*length)+4) >= mp3end) {
rolo_error("Not enough room to load file");
return -1;
}