diff options
author | imura <imura@FreeBSD.org> | 2000-02-13 02:15:48 +0800 |
---|---|---|
committer | imura <imura@FreeBSD.org> | 2000-02-13 02:15:48 +0800 |
commit | 3497bb0daf7ab910871eac1f361d79cbf5f56009 (patch) | |
tree | 086712a00176088aa7e24331742dfc6a73ce744b /emulators | |
parent | 16a737ceffe9fc6c6c737b0b7b897afc35c7e004 (diff) | |
download | freebsd-ports-gnome-3497bb0daf7ab910871eac1f361d79cbf5f56009.tar.gz freebsd-ports-gnome-3497bb0daf7ab910871eac1f361d79cbf5f56009.tar.zst freebsd-ports-gnome-3497bb0daf7ab910871eac1f361d79cbf5f56009.zip |
Fix new compiler error in -current.
Noticed by: bento
All no response from: maintainer
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bsvc/files/patch-ai | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/bsvc/files/patch-ai b/emulators/bsvc/files/patch-ai new file mode 100644 index 000000000000..fdf0977b9719 --- /dev/null +++ b/emulators/bsvc/files/patch-ai @@ -0,0 +1,11 @@ +--- Tools/xtermpipe/xtermpipe.cxx.orig Mon Nov 9 12:39:28 1998 ++++ Tools/xtermpipe/xtermpipe.cxx Sat Feb 12 11:02:02 2000 +@@ -31,7 +31,7 @@ + select(pipe_id + 1, (int*)&readfds, (int*)&writefds, (int*)&exceptfds, + (void*)0); + # else +- select(pipe_id + 1, &readfds, &writefds, &exceptfds, (void*)0); ++ select(pipe_id + 1, &readfds, &writefds, &exceptfds, (timeval*)0); + # endif + + if(FD_ISSET(0, &readfds)) |