Fix syntax error (missing semicolon)
Reported by TheSeven on IRC. Change-Id: Ie4bb331f9db050a90d99732e46c23f6402c7c320
This commit is contained in:
parent
bce72e6f2c
commit
5f603d36a1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue