Use uint8_t instead of char for bytes.

This commit is contained in:
vng 2011-12-13 17:18:17 +03:00 committed by Alex Zolotarev
parent a6f4179f4f
commit 9dcc22e996

View file

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