typo: missing ;

This commit is contained in:
Darren Tucker 2018-02-26 14:39:14 +11:00
parent cd3ab57f9b
commit 5aea4aa522
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ flock(int fd, int op)
if (rc && (errno == EAGAIN))
errno = EWOULDBLOCK;
#else
rc = -1
rc = -1;
errno = ENOSYS;
#endif