summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/rolo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index 7a0eafb79e..08223ae889 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -90,7 +90,7 @@ int rolo_load(char* filename)
90 lseek(fd, FIRMWARE_OFFSET_FILE_DATA, SEEK_SET); 90 lseek(fd, FIRMWARE_OFFSET_FILE_DATA, SEEK_SET);
91 91
92 /* verify that file can be read and descrambled */ 92 /* verify that file can be read and descrambled */
93 if ((mp3buf + (2*length)+4) >= &mp3end) { 93 if ((mp3buf + (2*length)+4) >= mp3end) {
94 rolo_error("Not enough room to load file"); 94 rolo_error("Not enough room to load file");
95 return -1; 95 return -1;
96 } 96 }