forked from organicmaps/organicmaps
Use uint8_t instead of char for bytes.
This commit is contained in:
parent
a6f4179f4f
commit
9dcc22e996
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ namespace rw_ops
|
|||
// Read from end, reverse and write directly.
|
||||
|
||||
size_t const bufSz = 1024;
|
||||
vector<char> buffer(bufSz);
|
||||
vector<uint8_t> buffer(bufSz);
|
||||
|
||||
uint64_t pos = src.Size();
|
||||
while (pos > 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue