- fixed return type of FileReader::ReadUInt64.

fixes #181.
This commit is contained in:
Christoph Oelckers 2020-08-14 23:56:31 +02:00
parent ff38cfe179
commit 3d4177fbb2
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ public:
return BigLong(v); return BigLong(v);
} }
uint32_t ReadUInt64() uint64_t ReadUInt64()
{ {
uint64_t v = 0; uint64_t v = 0;
Read(&v, 8); Read(&v, 8);