Pārlūkot izejas kodu

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
main
MarcoFalke pirms 6 gadiem
revīziju iesūtīja Victor Costan
vecāks
revīzija
14cce848e7
2 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. +1
    -1
      db/memtable.cc
  2. +1
    -1
      db/version_set.cc

+ 1
- 1
db/memtable.cc Parādīt failu

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

+ 1
- 1
db/version_set.cc Parādīt failu

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

Notiek ielāde…
Atcelt
Saglabāt