Date: Tue, 6 Jun 2000 14:43:00 +0200 (CEST) From: alex@big.endian.de To: FreeBSD-gnats-submit@freebsd.org Subject: ports/19053: fix audio/streamripper Message-ID: <20000606124300.8A22514A77@cichlids.cichlids.com>
next in thread | raw e-mail | index | archive | help
>Number: 19053 >Category: ports >Synopsis: fix audio/streamripper >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: Tue Jun 06 05:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alexander Langer >Release: FreeBSD 5.0-CURRENT i386 >Organization: none >Environment: >Description: Don't know how you were able to compile that one before. vfprintf requires va_list as last argument, not char * (typo, author meant fprintf). >How-To-Repeat: build. At least it's broken on alpha. >Fix: add this: --- streamripper.c.old Tue Jun 6 14:39:56 2000 +++ streamripper.c Tue Jun 6 14:40:40 2000 @@ -398,7 +398,7 @@ if (!(fd_log = fopen(m_opt.log_file, "a"))) { - vfprintf(stderr, "[logfile] %s", strerror(errno)); + fprintf(stderr, "[logfile] %s", strerror(errno)); fflush(stderr); } else >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?20000606124300.8A22514A77>