Merge pull request #4999

775b7b8 LLu is standard, but not portable. use ULL (sinetek)
pull/196/head
Wladimir J. van der Laan 10 years ago
commit 76182e7cb6
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6

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

Loading…
Cancel
Save