From 5aa057b64f642f8017fd3a1ffeb8e0fe897714b3 Mon Sep 17 00:00:00 2001 From: Peter Avalos Date: Sun, 8 Feb 2009 11:32:21 -0500 Subject: [PATCH] Whitespace cleanup. --- lib/libc/db/btree/bt_split.c | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/lib/libc/db/btree/bt_split.c b/lib/libc/db/btree/bt_split.c index d00320460a..72cf757f04 100644 --- a/lib/libc/db/btree/bt_split.c +++ b/lib/libc/db/btree/bt_split.c @@ -43,16 +43,13 @@ #include #include "btree.h" -static int bt_broot (BTREE *, PAGE *, PAGE *, PAGE *); -static PAGE *bt_page - (BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); -static int bt_preserve (BTREE *, pgno_t); -static PAGE *bt_psplit - (BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t); -static PAGE *bt_root - (BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); -static int bt_rroot (BTREE *, PAGE *, PAGE *, PAGE *); -static recno_t rec_total (PAGE *); +static int bt_broot(BTREE *, PAGE *, PAGE *, PAGE *); +static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); +static int bt_preserve(BTREE *, pgno_t); +static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t); +static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); +static int bt_rroot(BTREE *, PAGE *, PAGE *, PAGE *); +static recno_t rec_total(PAGE *); #ifdef STATISTICS u_long bt_rootsplit, bt_split, bt_sortsplit, bt_pfxsaved; @@ -152,7 +149,7 @@ __bt_split(BTREE *t, PAGE *sp, const DBT *key, const DBT *data, int flags, if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL) goto err2; - /* + /* * The new key goes ONE AFTER the index, because the split * was to the right. */ -- 2.41.0