summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/drop_indexes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/drop_indexes.cpp')
-rw-r--r--src/mongo/db/catalog/drop_indexes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/catalog/drop_indexes.cpp b/src/mongo/db/catalog/drop_indexes.cpp
index 85430ff6f10..7d6387e4ae8 100644
--- a/src/mongo/db/catalog/drop_indexes.cpp
+++ b/src/mongo/db/catalog/drop_indexes.cpp
@@ -107,8 +107,8 @@ Status wrappedRun(OperationContext* txn,
collection->getIndexCatalog()->findIndexByKeyPattern(txn, f.embeddedObject());
if (desc == NULL) {
return Status(ErrorCodes::IndexNotFound,
- str::stream()
- << "can't find index with key: " << f.embeddedObject().toString());
+ str::stream() << "can't find index with key: "
+ << f.embeddedObject().toString());
}
if (desc->isIdIndex()) {