tcannot assign args - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 18443075fbc9f63d791815ffba20656bbe9f102e
DIR parent c52410ac251198451c28ab1cab62af7262f021b3
HTML Author: rsc <devnull@localhost>
Date: Tue, 8 Feb 2005 21:03:36 +0000
cannot assign args
Diffstat:
M src/libhttpd/hio.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
DIR diff --git a/src/libhttpd/hio.c b/src/libhttpd/hio.c
t@@ -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;
}