--- src/lib/libc/db/btree/bt_page.c 2005/09/19 09:20:37 1.3 +++ src/lib/libc/db/btree/bt_page.c 2005/11/12 23:01:54 1.4 @@ -52,9 +52,7 @@ * mpool_put's the page. */ int -__bt_free(t, h) - BTREE *t; - PAGE *h; +__bt_free(BTREE *t, PAGE *h) { /* Insert the page at the head of the free list. */ h->prevpg = P_INVALID; @@ -78,9 +76,7 @@ __bt_free(t, h) * Pointer to a page, NULL on error. */ PAGE * -__bt_new(t, npg) - BTREE *t; - pgno_t *npg; +__bt_new(BTREE *t, pgno_t *npg) { PAGE *h;