summaryrefslogtreecommitdiff
path: root/db/common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'db/common.cpp')
-rw-r--r--db/common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/common.cpp b/db/common.cpp
index bf78f8b71a1..44bc54d0ab0 100644
--- a/db/common.cpp
+++ b/db/common.cpp
@@ -26,7 +26,7 @@ namespace mongo {
/* we use new here so we don't have to worry about destructor orders at program shutdown */
MongoMutex &dbMutex( *(new MongoMutex("rw:dbMutex")) );
- MongoMutex::MongoMutex(const char *name) : _m(name) {
+ MongoMutex::MongoMutex(const char *name) : _m(name) {
_remapPrivateViewRequested = false;
}