summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vsnprintf.c
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-12-24 23:54:19 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-12-24 23:54:19 +0000
commitfb25537fb854c86555f13528b8775406942328b6 (patch)
tree797d8a21d2ffdeeffeeb355d60573c422b79068a /lib/libc/stdio/vsnprintf.c
parent947d1011715bdb966f59b6d6a6b39e971c0a08ea (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/vsnprintf.c')
-rw-r--r--lib/libc/stdio/vsnprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c
index fa91175e92f1..0f43d8159230 100644
--- a/lib/libc/stdio/vsnprintf.c
+++ b/lib/libc/stdio/vsnprintf.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)vsnprintf.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
- "$Id: vsnprintf.c,v 1.8 1997/12/24 20:24:08 ache Exp $";
+ "$Id: vsnprintf.c,v 1.9 1997/12/24 23:02:47 ache Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
@@ -54,7 +54,7 @@ vsnprintf(str, n, fmt, ap)
{
int ret;
FILE f;
- int on;
+ size_t on;
on = n;
if (n > 0)