diff options
author | rubidium <rubidium@openttd.org> | 2009-01-23 09:47:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-01-23 09:47:46 +0000 |
commit | 67a2dd12e837288e548d71f11604ca9d1c44a7cc (patch) | |
tree | fe611541ce0afe369e2bc515562c67902993baed | |
parent | c8cbdc17d3ba53e039d9a408823b2aa76a164c8d (diff) | |
download | openttd-67a2dd12e837288e548d71f11604ca9d1c44a7cc.tar.xz |
(svn r15220) -Fix (r15216): signedness warning
-rw-r--r-- | src/saveload/oldloader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saveload/oldloader.cpp b/src/saveload/oldloader.cpp index 2411a675e..1d17cb55c 100644 --- a/src/saveload/oldloader.cpp +++ b/src/saveload/oldloader.cpp @@ -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) { |