Date: Sun, 30 Jan 2000 19:29:20 +0100 (CET) From: Alexander Langer <alex@cichlids.com> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/16477: fix emulators/bsvc (bentofied) Message-ID: <200001301829.TAA26136@cichlids.cichlids.com>
next in thread | raw e-mail | index | archive | help
>Number: 16477 >Category: ports >Synopsis: fix emulators/bsvc (bentofied) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jan 30 10:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alexander Langer >Release: FreeBSD 4.0-CURRENT i386 >Organization: This space is intentionally left blank. >Environment: bento >Description: fix compiler error on -current. >How-To-Repeat: see bento >Fix: --- patch-ai begins here --- --- src/Tools/xtermpipe/xtermpipe.cxx.old Sun Jan 30 19:21:11 2000 +++ src/Tools/xtermpipe/xtermpipe.cxx Sun Jan 30 19:21:51 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, (struct timeval *) NULL); # endif if(FD_ISSET(0, &readfds)) --- patch-ai ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001301829.TAA26136>