Fix sign mismatch warnings in GCC.

This was contributed in https://github.com/google/leveldb/pull/492

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=193080913
This commit is contained in:
MarcoFalke 2018-04-16 12:27:06 -07:00 committed by Victor Costan
parent 8046a51b21
commit 14cce848e7
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ void MemTable::Add(SequenceNumber s, ValueType type,
p += 8;
p = EncodeVarint32(p, val_size);
memcpy(p, value.data(), val_size);
assert((p + val_size) - buf == encoded_len);
assert(p + val_size == buf + encoded_len);
table_.Insert(buf);
}

View File

@ -20,7 +20,7 @@
namespace leveldb {
static int TargetFileSize(const Options* options) {
static size_t TargetFileSize(const Options* options) {
return options->max_file_size;
}