1
0
mirror of https://github.com/Zygo/bees.git synced 2025-06-17 01:56:16 +02:00

BeesBlockData: fix data type issues

Not sure if these cause any problems, but they are theoretically
incorrect data types.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell
2018-02-10 00:23:05 -05:00
parent 5bdad7fc93
commit 082f04818f
2 changed files with 3 additions and 3 deletions

View File

@ -596,7 +596,7 @@ private:
ostream & operator<<(ostream &os, const BeesHash &bh);
class BeesBlockData {
using Blob = vector<char>;
using Blob = vector<uint8_t>;
mutable Fd m_fd;
off_t m_offset;