Correct type of stored argument place (from previous fix)

This commit is contained in:
Andrey A. Chernov 1997-12-24 23:54:19 +00:00
parent 947d101171
commit fb25537fb8
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@
static char sccsid[] = "@(#)snprintf.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
"$Id: snprintf.c,v 1.8 1997/12/24 20:24:05 ache Exp $";
"$Id: snprintf.c,v 1.9 1997/12/24 23:02:40 ache Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
@ -65,7 +65,7 @@ snprintf(str, n, fmt, va_alist)
int ret;
va_list ap;
FILE f;
int on;
size_t on;
on = n;
if (n > 0)

View File

@ -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)