diff options
author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-09-03 10:25:40 +0000 |
---|---|---|
committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-09-03 10:25:40 +0000 |
commit | 03b08eb6b350b199e05b22625fbf3eb2f188b3ae (patch) | |
tree | 3a10a7669827a8f84efd5edf892b6453bdb176c5 /uisimulator | |
parent | 2b9e9440211cb4167767e2a3492f8b0b937a7689 (diff) |
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
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/common/io.c | 2 |
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) struct tm tm; DIRENT_T *x11; +#ifdef EOVERFLOW read_next: +#endif x11 = READDIR(dir->dir); if(!x11) |