plan9port

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

commit e2f52703c2387a34f7edc86845a0b15f04830bb8
parent f7b74c1725b497df5ce836545c127ad565175c70
Author: rsc <devnull@localhost>
Date:   Tue, 28 Dec 2004 17:34:59 +0000

fix bug in bprint.  fmtprint => fmtvprint

Diffstat:
Msrc/libbio/bprint.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libbio/bprint.c b/src/libbio/bprint.c @@ -11,7 +11,7 @@ Bprint(Biobuf *bp, char *fmt, ...) if(Bfmtinit(&f, bp) < 0) return -1; va_start(args, fmt); - n = fmtprint(&f, fmt, args); + n = fmtvprint(&f, fmt, args); va_end(args); if(n > 0 && Bfmtflush(&f) < 0) return -1;