fix a compiler sign warning in OpenBlockFile()

This commit is contained in:
Philip Kaufmann 2012-08-17 10:35:51 +02:00
parent 0825aee8f4
commit 1e7027b41e
1 changed files with 1 additions and 1 deletions

View File

@ -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;