summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_rebalance.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/btree/bt_rebalance.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_rebalance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_rebalance.c b/src/third_party/wiredtiger/src/btree/bt_rebalance.c
index 9ab576812a1..44b379ba804 100644
--- a/src/third_party/wiredtiger/src/btree/bt_rebalance.c
+++ b/src/third_party/wiredtiger/src/btree/bt_rebalance.c
@@ -130,9 +130,9 @@ __rebalance_internal(WT_SESSION_IMPL *session, WT_REBALANCE_STUFF *rs)
* a 4B quantity and it's technically possible there could be more pages than that in a tree.
*/
if (rs->leaf_next > UINT32_MAX)
- WT_RET_MSG(session, ENOTSUP, "too many leaf pages to rebalance, %" WT_SIZET_FMT
- " pages "
- "exceeds the maximum of %" PRIu32,
+ WT_RET_MSG(session, ENOTSUP,
+ "too many leaf pages to rebalance, %" WT_SIZET_FMT
+ " pages exceeds the maximum of %" PRIu32,
rs->leaf_next, UINT32_MAX);
leaf_next = (uint32_t)rs->leaf_next;