aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-08-17 10:35:51 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-08-17 10:35:51 +0200
commit1e7027b41ebf31fe53a2c92ef4f5d30c9f681735 (patch)
tree775772fca902bb20610e02018488fc92caddec39
parent0825aee8f4b2c942bb2ae5fbc63afa576fbe0f1b (diff)
downloadbitcoin-1e7027b41ebf31fe53a2c92ef4f5d30c9f681735.tar.xz
fix a compiler sign warning in OpenBlockFile()
-rw-r--r--src/main.cpp2
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;