Skip to content

Commit

Permalink
SERVER-18481 Fix compile break
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloianm committed May 22, 2015
1 parent 14d466b commit 15191a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mongo/util/tcmalloc_server_status_section.cpp
Expand Up @@ -29,7 +29,7 @@

#include "mongo/platform/basic.h"

#include "gperftools/malloc_extension.h"
#include <gperftools/malloc_extension.h>

#include "mongo/base/init.h"
#include "mongo/db/commands/server_status.h"
Expand Down Expand Up @@ -66,7 +66,7 @@ namespace {
registerThreadIdleCallback(&threadStateChange);
MallocExtension::instance()->GetNumericProperty("tcmalloc.max_total_thread_cache_bytes",
&tcmallocPoolSize);
log(1) << "tcmallocPoolSize: " << tcmallocPoolSize << "\n";
LOG(1) << "tcmallocPoolSize: " << tcmallocPoolSize << "\n";
return Status::OK();
}

Expand Down

0 comments on commit 15191a4

Please sign in to comment.