summaryrefslogtreecommitdiff
path: root/src/mongo/platform/posix_fadvise.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/platform/posix_fadvise.cpp')
-rw-r--r--src/mongo/platform/posix_fadvise.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/platform/posix_fadvise.cpp b/src/mongo/platform/posix_fadvise.cpp
index eecf49e5351..76b5831b5d5 100644
--- a/src/mongo/platform/posix_fadvise.cpp
+++ b/src/mongo/platform/posix_fadvise.cpp
@@ -52,9 +52,8 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice) {
// 'posix_fadvise()' on Solaris will call the emulation if the symbol is not found
//
-MONGO_INITIALIZER_GENERAL(SolarisPosixFadvise,
- MONGO_NO_PREREQUISITES,
- ("default"))(InitializerContext* context) {
+MONGO_INITIALIZER_GENERAL(SolarisPosixFadvise, MONGO_NO_PREREQUISITES, ("default"))
+(InitializerContext* context) {
void* functionAddress = dlsym(RTLD_DEFAULT, "posix_fadvise");
if (functionAddress != NULL) {
mongo::pal::posix_fadvise_switcher =