diff options
author | imura <imura@FreeBSD.org> | 2000-02-12 18:34:50 +0000 |
---|---|---|
committer | imura <imura@FreeBSD.org> | 2000-02-12 18:34:50 +0000 |
commit | 3a3cbfb35766aba19571b8d13fdbaf1f6cd2ad19 (patch) | |
tree | a95e624a16e4e1146240995d8be0ac7ea2c1de5f /emulators | |
parent | 3497bb0daf7ab910871eac1f361d79cbf5f56009 (diff) | |
download | FreeBSD-ports-3a3cbfb35766aba19571b8d13fdbaf1f6cd2ad19.zip FreeBSD-ports-3a3cbfb35766aba19571b8d13fdbaf1f6cd2ad19.tar.gz |
Woops, "timeval" -> "struct timeval"
Diffstat (limited to 'emulators')
-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 fdf0977..fb1d941 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)) |