diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1998-01-04 22:28:47 +0000 | 
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1998-01-04 22:28:47 +0000 | 
| commit | b250f24856748de80dcf3759a770ff3092b392b1 (patch) | |
| tree | 2df2f976b66d9e422e0f24386e848aa0c611c606 /lib/libc | |
| parent | 78dd9df2064342cea0ddc7152de4db483c7a6dec (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/stdio/vfprintf.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index a325784f6ef4..dd3f743d5ff4 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -39,7 +39,7 @@  static char sccsid[] = "@(#)vfprintf.c	8.1 (Berkeley) 6/4/93";  #endif  static const char rcsid[] = -		"$Id: vfprintf.c,v 1.15 1997/12/24 23:02:43 ache Exp $"; +		"$Id: vfprintf.c,v 1.16 1997/12/25 00:32:17 ache Exp $";  #endif /* LIBC_SCCS and not lint */  /* @@ -457,7 +457,7 @@ vfprintf(fp, fmt0, ap)  		for (cp = fmt; (ch = *fmt) != '\0' && ch != '%'; fmt++)  			/* void */;  		if ((n = fmt - cp) != 0) { -			if ((size_t)ret + n > INT_MAX) { +			if ((unsigned)ret + n > INT_MAX) {  				ret = EOF;  				goto error;  			} @@ -786,7 +786,7 @@ number:			if ((dprec = prec) >= 0)  			realsz += 2;  		prsize = width > realsz ? width : realsz; -		if ((size_t)ret + prsize > INT_MAX) { +		if ((unsigned)ret + prsize > INT_MAX) {  			ret = EOF;  			goto error;  		} | 
