summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-05-01 08:31:30 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-05-01 08:31:30 -0400
commitbc7def69b7eaf4ba5bd5564fc2114cbdd72e88e7 (patch)
treef6626677cd012ca6158fe5e2efe6346224298a29 /src
parentb223156ed01471abd3dfbb4456b5fe567af6b1b8 (diff)
downloadmongo-bc7def69b7eaf4ba5bd5564fc2114cbdd72e88e7.tar.gz
Be explicit, we're turning on a set of flags.
Diffstat (limited to 'src')
-rw-r--r--src/lsm/lsm_stat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lsm/lsm_stat.c b/src/lsm/lsm_stat.c
index a38b102fab4..6467c62371c 100644
--- a/src/lsm/lsm_stat.c
+++ b/src/lsm/lsm_stat.c
@@ -38,15 +38,15 @@ __wt_lsm_stat_init(WT_SESSION_IMPL *session,
*/
p = &cfg[1];
if (LF_ISSET(WT_STATISTICS_CLEAR))
- *p++ = "statistics_clear";
+ *p++ = "statistics_clear=true";
if (LF_ISSET(WT_STATISTICS_FAST))
- *p++ = "statistics_fast";
+ *p++ = "statistics_fast=true";
p = &disk_cfg[1];
if (LF_ISSET(WT_STATISTICS_CLEAR))
- *p++ = "statistics_clear";
+ *p++ = "statistics_clear=true";
if (LF_ISSET(WT_STATISTICS_FAST))
- *p++ = "statistics_fast";
+ *p++ = "statistics_fast=true";
/*
* Allocate an aggregated statistics structure, or clear any already