From e4ef30b29d1d3250c08542d07819f104cf79cce0 Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 24 Dec 1997 23:54:19 +0000 Subject: Correct type of stored argument place (from previous fix) --- lib/libc/stdio/vsnprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdio/vsnprintf.c') diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c index fa91175..0f43d81 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 @@ -54,7 +54,7 @@ vsnprintf(str, n, fmt, ap) { int ret; FILE f; - int on; + size_t on; on = n; if (n > 0) -- cgit v1.1