summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-10-01 16:31:43 +0000
committerevergreen <evergreen@mongodb.com>2019-10-01 16:31:43 +0000
commit7f97c5b56ec17dfb7bb59fd0df558a516c7d3c27 (patch)
treef5eac64c88bdbae76fa9db6b353df3df90b7fb7e
parent504cb350a52f7123d60ad8bc8d2359fb1cf8021e (diff)
downloadmongo-7f97c5b56ec17dfb7bb59fd0df558a516c7d3c27.tar.gz
SERVER-43737 Fixed unnamed variable in Biggie's RecordStore
-rw-r--r--src/mongo/db/storage/biggie/biggie_record_store.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/biggie/biggie_record_store.cpp b/src/mongo/db/storage/biggie/biggie_record_store.cpp
index ff113dc0982..c4c0c698456 100644
--- a/src/mongo/db/storage/biggie/biggie_record_store.cpp
+++ b/src/mongo/db/storage/biggie/biggie_record_store.cpp
@@ -191,7 +191,7 @@ Status RecordStore::updateRecord(OperationContext* opCtx,
const char* data,
int len) {
StringStore* workingCopy(RecoveryUnit::get(opCtx)->getHead());
- SizeAdjuster(opCtx, this);
+ SizeAdjuster adjuster(opCtx, this);
{
std::string key = createKey(_ident, oldLocation.repr());
StringStore::const_iterator it = workingCopy->find(key);