summaryrefslogtreecommitdiff
path: root/src/mongo/platform/shared_library_posix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/platform/shared_library_posix.cpp')
-rw-r--r--src/mongo/platform/shared_library_posix.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/platform/shared_library_posix.cpp b/src/mongo/platform/shared_library_posix.cpp
index a383efab94e..871bd697012 100644
--- a/src/mongo/platform/shared_library_posix.cpp
+++ b/src/mongo/platform/shared_library_posix.cpp
@@ -79,8 +79,7 @@ StatusWith<void*> SharedLibrary::getSymbol(StringData name) {
if (error_msg != nullptr) {
return StatusWith<void*>(ErrorCodes::InternalError,
str::stream() << "dlsym failed for symbol " << name
- << " with error message: "
- << error_msg);
+ << " with error message: " << error_msg);
}
return StatusWith<void*>(symbol);