Date: Tue, 6 Jun 2000 06:00:04 -0700 (PDT) From: Will Andrews <andrews@technologist.com> To: freebsd-ports@FreeBSD.org Subject: Re: ports/19053: fix audio/streamripper Message-ID: <200006061300.GAA21916@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/19053; it has been noted by GNATS. From: Will Andrews <andrews@technologist.com> To: alex@big.endian.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/19053: fix audio/streamripper Date: Tue, 6 Jun 2000 08:58:13 -0400 On Tue, Jun 06, 2000 at 02:43:00PM +0200, alex@big.endian.de wrote: > >Responsible: freebsd-ports Just assign it to me if you know it's my problem. :) > 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). Weird.. I'm pretty certain I tested that build. :-) > >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 Thanks for patch. -- Will Andrews <andrews@technologist.com> GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? 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?200006061300.GAA21916>