diff options
author | R. Imura <imura@FreeBSD.org> | 2000-02-12 18:34:50 +0000 |
---|---|---|
committer | R. Imura <imura@FreeBSD.org> | 2000-02-12 18:34:50 +0000 |
commit | 1d2c4bc5451b9d9ee247bb26c5498971766866f8 (patch) | |
tree | 1cad68b980d6f43eddd150388fbf68e4dd78b732 /emulators/bsvc | |
parent | Fix new compiler error in -current. (diff) |
Woops, "timeval" -> "struct timeval"
Notes
Notes:
svn path=/head/; revision=25696
Diffstat (limited to 'emulators/bsvc')
-rw-r--r-- | emulators/bsvc/files/patch-ai | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/bsvc/files/patch-ai b/emulators/bsvc/files/patch-ai index fdf0977b9719..fb1d941727ba 100644 --- a/emulators/bsvc/files/patch-ai +++ b/emulators/bsvc/files/patch-ai @@ -5,7 +5,7 @@ (void*)0); # else - 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 if(FD_ISSET(0, &readfds)) |