diff options
Diffstat (limited to 'src/sysdeps/trynbwaitall.c')
-rw-r--r-- | src/sysdeps/trynbwaitall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdeps/trynbwaitall.c b/src/sysdeps/trynbwaitall.c index 90a02e6..a10fd0b 100644 --- a/src/sysdeps/trynbwaitall.c +++ b/src/sysdeps/trynbwaitall.c @@ -34,7 +34,7 @@ static int ndelay_on (int fd) { - register int got = fcntl(fd, F_GETFL) ; + int got = fcntl(fd, F_GETFL) ; return (got == -1) ? -1 : fcntl(fd, F_SETFL, got | O_NONBLOCK) ; } |