Fix syntax error (missing semicolon)

Reported by TheSeven on IRC.

Change-Id: Ie4bb331f9db050a90d99732e46c23f6402c7c320
This commit is contained in:
Thomas Jarosch 2015-01-03 15:02:23 +01:00
parent bce72e6f2c
commit 5f603d36a1

View file

@ -229,7 +229,7 @@ int os_rmdir(const char *ospath)
int os_dirfd(_WDIR *osdirp)
{
#ifdef ENOTSUP
errno = ENOTSUP
errno = ENOTSUP;
#else
errno = ENOSYS;
#endif