plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 18443075fbc9f63d791815ffba20656bbe9f102e
parent c52410ac251198451c28ab1cab62af7262f021b3
Author: rsc <devnull@localhost>
Date:   Tue,  8 Feb 2005 21:03:36 +0000

cannot assign args

Diffstat:
Msrc/libhttpd/hio.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/libhttpd/hio.c b/src/libhttpd/hio.c @@ -375,8 +375,7 @@ hvprint(Hio *h, char *fmt, va_list args) f.flush = fmthflush; f.farg = h; f.nfmt = 0; - f.args = args; - n = dofmt(&f, fmt); + n = fmtvprint(&f, fmt, args); h->pos = f.to; return n; }