(svn r15220) -Fix (r15216): signedness warning

This commit is contained in:
rubidium 2009-01-23 09:47:46 +00:00
parent c8cbdc17d3
commit 67a2dd12e8

View File

@ -222,7 +222,7 @@ static bool VerifyOldNameChecksum(char *title, uint len)
static inline bool CheckOldSavegameType(FILE *f, char *temp, const char *last, uint len)
{
assert(last - temp + 1 >= len);
assert(last - temp + 1 >= (int)len);
fseek(f, 0, SEEK_SET);
if (fread(temp, 1, len, f) != len) {