summaryrefslogtreecommitdiff
path: root/firmware/mp3data.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mp3data.c')
-rw-r--r--firmware/mp3data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mp3data.c b/firmware/mp3data.c
index e899125013..087bcf5030 100644
--- a/firmware/mp3data.c
+++ b/firmware/mp3data.c
@@ -266,7 +266,7 @@ static int fileread(int fd, unsigned char *c)
266#if defined(IRIVER_H100) && !defined(SIMULATOR) 266#if defined(IRIVER_H100) && !defined(SIMULATOR)
267 /* We don't want to eat all cpu power. Maybe better way to do this 267 /* We don't want to eat all cpu power. Maybe better way to do this
268 should be implemented. */ 268 should be implemented. */
269 while (pcm_is_lowdata()) 269 if (pcm_is_lowdata())
270 yield(); 270 yield();
271#endif 271#endif
272 272