diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-17 10:35:51 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-17 10:35:51 +0200 |
commit | 1e7027b41ebf31fe53a2c92ef4f5d30c9f681735 (patch) | |
tree | 775772fca902bb20610e02018488fc92caddec39 /src | |
parent | 0825aee8f4b2c942bb2ae5fbc63afa576fbe0f1b (diff) |
fix a compiler sign warning in OpenBlockFile()
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 23c6d988aa..89f2709e61 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1983,7 +1983,7 @@ FILE* AppendBlockFile(unsigned int& nFileRet) if (fseek(file, 0, SEEK_END) != 0) return NULL; // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB - if (ftell(file) < 0x7F000000 - MAX_SIZE) + if (ftell(file) < (long)(0x7F000000 - MAX_SIZE)) { nFileRet = nCurrentBlockFile; return file; |