(svn r2617) - Fix: fix some warnings, and reenable vs.net2003 signed/unsigned warnings

This commit is contained in:
Darkvater
2005-07-17 18:11:17 +00:00
parent f3c14486be
commit 5261529887
6 changed files with 15 additions and 13 deletions

View File

@@ -763,7 +763,7 @@ static char *FormatString(char *buff, const char *str, const int32 *argv, uint c
// Each LEN is printed using 2 bytes in big endian order.
uint num = (byte)*str++;
while (num) {
if (str[0] == casei) {
if ((byte)str[0] == casei) {
// Found the case, adjust str pointer and continue
str += 3;
break;