summaryrefslogtreecommitdiff
path: root/src/mongo/platform/strcasestr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/platform/strcasestr.cpp')
-rw-r--r--src/mongo/platform/strcasestr.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/platform/strcasestr.cpp b/src/mongo/platform/strcasestr.cpp
index eb5f39b442e..d71e61c8fe6 100644
--- a/src/mongo/platform/strcasestr.cpp
+++ b/src/mongo/platform/strcasestr.cpp
@@ -94,9 +94,8 @@ namespace mongo {
// 'strcasestr()' on Solaris will call the emulation if the symbol is not found
//
-MONGO_INITIALIZER_GENERAL(SolarisStrCaseCmp,
- MONGO_NO_PREREQUISITES,
- ("default"))(InitializerContext* context) {
+MONGO_INITIALIZER_GENERAL(SolarisStrCaseCmp, MONGO_NO_PREREQUISITES, ("default"))
+(InitializerContext* context) {
void* functionAddress = dlsym(RTLD_DEFAULT, "strcasestr");
if (functionAddress != NULL) {
mongo::pal::strcasestr_switcher =