mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] snprintf.c (dopr): Use `unsigned int' as the second argument to va_arg
when casting to `unsigned short' is intended. Submitted by Ian Abbott in <3C0CB09F.21762.34A1F1@localhost>.
This commit is contained in:
parent
f70c9c6ede
commit
abf215c1e3
@ -1,3 +1,8 @@
|
||||
2001-12-04 Ian Abbott <abbotti@mev.co.uk>
|
||||
|
||||
* snprintf.c (dopr): Use `unsigned int' as the second argument to
|
||||
va_arg when casting to `unsigned short' is intended.
|
||||
|
||||
2001-12-04 Herold Heiko <Heiko.Herold@previnet.it>
|
||||
|
||||
* gen_sslfunc.c: on windows provide ssl crypto random
|
||||
|
@ -321,7 +321,7 @@ static int dopr (char *buffer, size_t maxlen, const char *format, va_list args)
|
||||
case 'o':
|
||||
flags |= DP_F_UNSIGNED;
|
||||
if (cflags == DP_C_SHORT)
|
||||
value = (short int)va_arg (args, int);
|
||||
value = (unsigned short int)va_arg (args, unsigned int);
|
||||
else if (cflags == DP_C_LONG)
|
||||
value = va_arg (args, unsigned long int);
|
||||
else if (cflags == DP_C_LLONG)
|
||||
@ -333,7 +333,7 @@ static int dopr (char *buffer, size_t maxlen, const char *format, va_list args)
|
||||
case 'u':
|
||||
flags |= DP_F_UNSIGNED;
|
||||
if (cflags == DP_C_SHORT)
|
||||
value = (unsigned short int)va_arg (args, int);
|
||||
value = (unsigned short int)va_arg (args, unsigned int);
|
||||
else if (cflags == DP_C_LONG)
|
||||
value = va_arg (args, unsigned long int);
|
||||
else if (cflags == DP_C_LLONG)
|
||||
@ -347,7 +347,7 @@ static int dopr (char *buffer, size_t maxlen, const char *format, va_list args)
|
||||
case 'x':
|
||||
flags |= DP_F_UNSIGNED;
|
||||
if (cflags == DP_C_SHORT)
|
||||
value = (short int)va_arg (args, int);
|
||||
value = (unsigned short int)va_arg (args, unsigned int);
|
||||
else if (cflags == DP_C_LONG)
|
||||
value = va_arg (args, unsigned long int);
|
||||
else if (cflags == DP_C_LLONG)
|
||||
|
Loading…
Reference in New Issue
Block a user