diff options
author | rsc <devnull@localhost> | 2004-12-28 17:34:59 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-12-28 17:34:59 +0000 |
commit | e2f52703c2387a34f7edc86845a0b15f04830bb8 (patch) | |
tree | abf147850ddb3822981e3aeba581a0cda52e34fe /src/libbio | |
parent | f7b74c1725b497df5ce836545c127ad565175c70 (diff) | |
download | plan9port-e2f52703c2387a34f7edc86845a0b15f04830bb8.tar.gz plan9port-e2f52703c2387a34f7edc86845a0b15f04830bb8.tar.bz2 plan9port-e2f52703c2387a34f7edc86845a0b15f04830bb8.zip |
fix bug in bprint. fmtprint => fmtvprint
Diffstat (limited to 'src/libbio')
-rw-r--r-- | src/libbio/bprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libbio/bprint.c b/src/libbio/bprint.c index bfcb4a03..f15203ce 100644 --- 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; |