LLu is standard, but not portable. use ULL

This commit is contained in:
sinetek 2014-09-28 18:22:44 -04:00
parent a38eaea082
commit 775b7b8d70
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ uint64_t ReadCompactSize(Stream& is)
uint64_t xSize;
READDATA(is, xSize);
nSizeRet = xSize;
if (nSizeRet < 0x100000000LLu)
if (nSizeRet < 0x100000000ULL)
throw std::ios_base::failure("non-canonical ReadCompactSize()");
}
if (nSizeRet > (uint64_t)MAX_SIZE)