btree/bt_delete.c: Fix uninitialized var warning.
This commit is contained in:
parent
166c1a12a2
commit
05aba58c4c
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ __bt_stkacq(t, hp, c)
|
|||
EPG *e;
|
||||
EPGNO *parent;
|
||||
PAGE *h;
|
||||
indx_t index;
|
||||
indx_t index = 0;
|
||||
pgno_t pgno;
|
||||
recno_t nextpg, prevpg;
|
||||
int exact, level;
|
||||
|
|
|
|||
Loading…
Reference in a new issue