(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 c6c86abeee
commit 49584082a0
20 changed files with 39 additions and 33 deletions

View File

@@ -1006,7 +1006,7 @@ void ConsoleSetPatchSetting(char *name, char *value)
const PatchPage *page;
const PatchEntry *pe = NULL;
bool found = false;
int i;
uint i;
unsigned int j;
int val;
@@ -1066,7 +1066,7 @@ void ConsoleGetPatchSetting(char *name)
const PatchEntry *pe = NULL;
char value[50];
bool found = false;
int i;
uint i;
unsigned int j;
/* Search for the name in the patch-settings */