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 | |
| parent | 2b9e9440211cb4167767e2a3492f8b0b937a7689 (diff) | |
| download | rockbox-03b08eb6b350b199e05b22625fbf3eb2f188b3ae.zip rockbox-03b08eb6b350b199e05b22625fbf3eb2f188b3ae.tar.gz rockbox-03b08eb6b350b199e05b22625fbf3eb2f188b3ae.tar.bz2 rockbox-03b08eb6b350b199e05b22625fbf3eb2f188b3ae.tar.xz | |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c index 71da4fc..f7a61c0 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) |