diff options
Diffstat (limited to 'src/mongo/s/request.cpp')
-rw-r--r-- | src/mongo/s/request.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/request.cpp b/src/mongo/s/request.cpp index dcd78794a93..a396b0d7b86 100644 --- a/src/mongo/s/request.cpp +++ b/src/mongo/s/request.cpp @@ -84,7 +84,7 @@ void Request::process(OperationContext* txn, int attempt) { int op = _m.operation(); verify(op > dbMsg); - const MSGID msgId = _m.header().getId(); + const int32_t msgId = _m.header().getId(); LOG(3) << "Request::process begin ns: " << getnsIfPresent() << " msg id: " << msgId << " op: " << op << " attempt: " << attempt; |