summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/oplog_interface_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/oplog_interface_local.h')
-rw-r--r--src/mongo/db/repl/oplog_interface_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/oplog_interface_local.h b/src/mongo/db/repl/oplog_interface_local.h
index 32c9adc4377..577dbe8d7fa 100644
--- a/src/mongo/db/repl/oplog_interface_local.h
+++ b/src/mongo/db/repl/oplog_interface_local.h
@@ -42,12 +42,12 @@ namespace repl {
class OplogInterfaceLocal : public OplogInterface {
public:
- OplogInterfaceLocal(OperationContext* txn, const std::string& collectionName);
+ OplogInterfaceLocal(OperationContext* opCtx, const std::string& collectionName);
std::string toString() const override;
std::unique_ptr<OplogInterface::Iterator> makeIterator() const override;
private:
- OperationContext* _txn;
+ OperationContext* _opCtx;
std::string _collectionName;
};