summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Solnik <dansolnik@gmail.com>2019-07-09 15:17:26 -0400
committerDaniel Solnik <dansolnik@gmail.com>2019-07-09 15:17:26 -0400
commit209bbe879e84b4419295c8195bdbc2929c89e602 (patch)
tree087486d9f09378b513165b3f8e8513d346a82e53
parent7578d0b8285c18fd0007bf78a2bbc49720fb2879 (diff)
downloadmongo-209bbe879e84b4419295c8195bdbc2929c89e602.tar.gz
SERVER-41907 fixing lint
-rw-r--r--src/mongo/db/index/index_access_method.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/index/index_access_method.cpp b/src/mongo/db/index/index_access_method.cpp
index d727e0bd350..46971923f03 100644
--- a/src/mongo/db/index/index_access_method.cpp
+++ b/src/mongo/db/index/index_access_method.cpp
@@ -598,7 +598,8 @@ Status AbstractIndexAccessMethod::commitBulk(OperationContext* opCtx,
if (cmpData < 0) {
severe() << "expected the next key" << data.first.toString()
- << " to be greater than or equal to the previous key" << previousKey.toString();
+ << " to be greater than or equal to the previous key"
+ << previousKey.toString();
fassertFailedNoTrace(31171);
}