summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2015-01-03 15:02:23 +0100
committerThomas Jarosch <tomj@simonv.com>2015-01-03 15:02:23 +0100
commit5f603d36a1688faec6a13ad118d6894f4f274799 (patch)
treeca486d948fbf99a48fdc5e1db6bc0bb26556e9e8
parentbce72e6f2cab2a71e4a69ccf47b85f2ee1ef3572 (diff)
downloadrockbox-5f603d36a1688faec6a13ad118d6894f4f274799.tar.gz
rockbox-5f603d36a1688faec6a13ad118d6894f4f274799.zip
Fix syntax error (missing semicolon)
Reported by TheSeven on IRC. Change-Id: Ie4bb331f9db050a90d99732e46c23f6402c7c320
-rw-r--r--firmware/target/hosted/filesystem-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/filesystem-win32.c b/firmware/target/hosted/filesystem-win32.c
index 19ef1c0aa7..fad9b16e36 100644
--- a/firmware/target/hosted/filesystem-win32.c
+++ b/firmware/target/hosted/filesystem-win32.c
@@ -229,7 +229,7 @@ int os_rmdir(const char *ospath)
229int os_dirfd(_WDIR *osdirp) 229int os_dirfd(_WDIR *osdirp)
230{ 230{
231#ifdef ENOTSUP 231#ifdef ENOTSUP
232 errno = ENOTSUP 232 errno = ENOTSUP;
233#else 233#else
234 errno = ENOSYS; 234 errno = ENOSYS;
235#endif 235#endif