aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2012-08-17 10:35:51 +0200
committerPhilip Kaufmann <[email protected]>2012-08-17 10:35:51 +0200
commit1e7027b41ebf31fe53a2c92ef4f5d30c9f681735 (patch)
tree775772fca902bb20610e02018488fc92caddec39 /src/main.cpp
parentMerge pull request #1649 from Diapolo/optionsdialog (diff)
downloaddiscoin-1e7027b41ebf31fe53a2c92ef4f5d30c9f681735.tar.xz
discoin-1e7027b41ebf31fe53a2c92ef4f5d30c9f681735.zip
fix a compiler sign warning in OpenBlockFile()
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 23c6d988a..89f2709e6 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;