summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2013-12-11 15:07:37 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2013-12-11 15:07:37 +1100
commitde3729860eaea10cded87cc1599a23466b35eb43 (patch)
treea83af1839056651d9e024e1527617e4c3471dd0d
parent7e6d11a4a5f687cabfec91b93deadb4080497733 (diff)
downloadmongo-de3729860eaea10cded87cc1599a23466b35eb43.tar.gz
Alphabetize LSM tree flags.
refs #792
-rw-r--r--src/include/lsm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/lsm.h b/src/include/lsm.h
index 0614b2d43a3..ca1442d7c80 100644
--- a/src/include/lsm.h
+++ b/src/include/lsm.h
@@ -123,11 +123,11 @@ struct __wt_lsm_tree {
size_t old_alloc; /* Space allocated for old chunks */
u_int nold_chunks; /* Number of old chunks */
-#define WT_LSM_TREE_NEED_SWITCH 0x01
-#define WT_LSM_TREE_OPEN 0x02
-#define WT_LSM_TREE_THROTTLE 0x04
-#define WT_LSM_TREE_WORKING 0x08
-#define WT_LSM_TREE_COMPACTING 0x10
+#define WT_LSM_TREE_COMPACTING 0x01
+#define WT_LSM_TREE_NEED_SWITCH 0x02
+#define WT_LSM_TREE_OPEN 0x04
+#define WT_LSM_TREE_THROTTLE 0x08
+#define WT_LSM_TREE_WORKING 0x10
uint32_t flags;
};