Woops, "timeval" -> "struct timeval"
This commit is contained in:
parent
24765d07d6
commit
1d2c4bc545
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25696
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
(void*)0);
|
(void*)0);
|
||||||
# else
|
# else
|
||||||
- select(pipe_id + 1, &readfds, &writefds, &exceptfds, (void*)0);
|
- select(pipe_id + 1, &readfds, &writefds, &exceptfds, (void*)0);
|
||||||
+ select(pipe_id + 1, &readfds, &writefds, &exceptfds, (timeval*)0);
|
+ select(pipe_id + 1, &readfds, &writefds, &exceptfds, (struct timeval*)0);
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
if(FD_ISSET(0, &readfds))
|
if(FD_ISSET(0, &readfds))
|
||||||
|
|
Loading…
Reference in a new issue