diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-02-16 09:01:35 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-02-16 08:59:28 -0500 |
commit | faa6dd27b1f1f96f5e1a26e830e1a80255afdb5f (patch) | |
tree | ac28ac960c3a60cfa750bf86d095ef01e0f72280 /src/leveldb/db/repair.cc | |
parent | 13e31dd6548d64a5992f439e74bb424bf88aca04 (diff) | |
parent | 835a21b42402d546bd72f8a3f452f0c743fefe82 (diff) |
Bump leveldb subtree
Diffstat (limited to 'src/leveldb/db/repair.cc')
-rw-r--r-- | src/leveldb/db/repair.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leveldb/db/repair.cc b/src/leveldb/db/repair.cc index 4cd4bb047f..7281e3d345 100644 --- a/src/leveldb/db/repair.cc +++ b/src/leveldb/db/repair.cc @@ -203,7 +203,7 @@ class Repairer { while (reader.ReadRecord(&record, &scratch)) { if (record.size() < 12) { reporter.Corruption( - record.size(), Status::Corruption("log record too small")); + record.size(), Status::Corruption("log record too small", logname)); continue; } WriteBatchInternal::SetContents(&batch, record); |