summaryrefslogtreecommitdiff
path: root/src/debugallocation.cc
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2016-12-17 13:57:41 -0500
committerAndrew Morrow <acm@mongodb.com>2016-12-17 13:57:41 -0500
commitb0abefd93834d9d9c7ffaae2d23bd48ed8e96477 (patch)
tree7a12edbf3453086d3552f91767fd87c921dacedb /src/debugallocation.cc
parent855b3800064db49af823b85a54be269923eb6f4d (diff)
downloadgperftools-b0abefd93834d9d9c7ffaae2d23bd48ed8e96477.tar.gz
Fix a typo in the page fence flag declaration
Diffstat (limited to 'src/debugallocation.cc')
-rw-r--r--src/debugallocation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugallocation.cc b/src/debugallocation.cc
index e93a681..9e4813f 100644
--- a/src/debugallocation.cc
+++ b/src/debugallocation.cc
@@ -109,7 +109,7 @@ DEFINE_bool(malloc_page_fence,
"with a guard page following the allocation (to catch buffer "
"overruns right when they happen).");
DEFINE_bool(malloc_page_fence_never_reclaim,
- EnvToBool("TCMALLOC_PAGE_FRANCE_NEVER_RECLAIM", false),
+ EnvToBool("TCMALLOC_PAGE_FENCE_NEVER_RECLAIM", false),
"Enables making the virtual address space inaccessible "
"upon a deallocation instead of returning it and reusing later.");
#else