btree/bt_delete.c: Fix uninitialized var warning.

This commit is contained in:
Paul Sokolovsky 2016-06-15 02:06:07 +03:00
parent 166c1a12a2
commit 05aba58c4c

View file

@ -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;