summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-09-03 10:25:40 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-09-03 10:25:40 +0000
commit03b08eb6b350b199e05b22625fbf3eb2f188b3ae (patch)
tree3a10a7669827a8f84efd5edf892b6453bdb176c5
parent2b9e9440211cb4167767e2a3492f8b0b937a7689 (diff)
downloadrockbox-03b08eb6b350b199e05b22625fbf3eb2f188b3ae.tar.gz
rockbox-03b08eb6b350b199e05b22625fbf3eb2f188b3ae.zip
Fix warning, 'read_next:' is only used when EOVERFLOW is defined.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30414 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/common/io.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c
index 71da4fc2ce..f7a61c037d 100644
--- a/uisimulator/common/io.c
+++ b/uisimulator/common/io.c
@@ -331,7 +331,9 @@ struct sim_dirent *sim_readdir(MYDIR *dir)
331 struct tm tm; 331 struct tm tm;
332 DIRENT_T *x11; 332 DIRENT_T *x11;
333 333
334#ifdef EOVERFLOW
334read_next: 335read_next:
336#endif
335 x11 = READDIR(dir->dir); 337 x11 = READDIR(dir->dir);
336 338
337 if(!x11) 339 if(!x11)