Removed a warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3667 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2ce9ba58ad
commit
f70a41cdc6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue