[CRT] Fix MSVC warnings

svn path=/trunk/; revision=67519
This commit is contained in:
Timo Kreuzer 2015-05-02 22:19:31 +00:00
parent bc3ca7d415
commit 6223a53eb1

View file

@ -297,7 +297,7 @@ _FUNCTION_ {
if (!seendigit) break; /* not a valid number */ if (!seendigit) break; /* not a valid number */
st = 1; st = 1;
if (!suppress) { if (!suppress) {
#define _SET_NUMBER_(type) *va_arg(ap, type*) = negative ? -cur : cur #define _SET_NUMBER_(type) *va_arg(ap, type*) = negative ? -(LONGLONG)cur : cur
if (I64_prefix) _SET_NUMBER_(LONGLONG); if (I64_prefix) _SET_NUMBER_(LONGLONG);
else if (l_prefix) _SET_NUMBER_(LONG); else if (l_prefix) _SET_NUMBER_(LONG);
else if (h_prefix == 1) _SET_NUMBER_(short int); else if (h_prefix == 1) _SET_NUMBER_(short int);