(svn r1451) Fix some of the signed/unsigned comparison warnings

This commit is contained in:
tron
2005-01-09 21:25:44 +00:00
parent d2e02df881
commit 4450ff105c
20 changed files with 39 additions and 33 deletions

View File

@@ -1058,9 +1058,9 @@ void IConsoleCmdExec(const char* cmdstr)
bool valid_token;
bool skip_lt_change;
int c;
int i;
int l;
uint c;
uint i;
uint l;
if (_stdlib_con_developer)
IConsolePrintF(_iconsole_color_debug, "CONDEBUG: execution_cmdline: %s", cmdstr);