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, 2 insertions, 1 deletions
diff --git a/src/mongo/platform/shared_library_posix.cpp b/src/mongo/platform/shared_library_posix.cpp
index 2cad9be817e..9468665dfe6 100644
--- a/src/mongo/platform/shared_library_posix.cpp
+++ b/src/mongo/platform/shared_library_posix.cpp
@@ -78,7 +78,8 @@ 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);