summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_curprev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/btree/bt_curprev.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_curprev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_curprev.c b/src/third_party/wiredtiger/src/btree/bt_curprev.c
index f8db9cd6233..4d6f62a10b7 100644
--- a/src/third_party/wiredtiger/src/btree/bt_curprev.c
+++ b/src/third_party/wiredtiger/src/btree/bt_curprev.c
@@ -318,7 +318,7 @@ static inline int
__cursor_var_prev(WT_CURSOR_BTREE *cbt, bool newpage, bool restart)
{
WT_CELL *cell;
- WT_CELL_UNPACK unpack;
+ WT_CELL_UNPACK_KV unpack;
WT_COL *cip;
WT_INSERT *ins;
WT_PAGE *page;
@@ -385,7 +385,7 @@ restart_read:
*/
if (cbt->cip_saved != cip) {
cell = WT_COL_PTR(page, cip);
- __wt_cell_unpack(session, page, cell, &unpack);
+ __wt_cell_unpack_kv(session, page->dsk, cell, &unpack);
if (unpack.type == WT_CELL_DEL) {
if (__wt_cell_rle(&unpack) == 1)
continue;
@@ -435,7 +435,7 @@ restart_read:
static inline int
__cursor_row_prev(WT_CURSOR_BTREE *cbt, bool newpage, bool restart)
{
- WT_CELL_UNPACK kpack;
+ WT_CELL_UNPACK_KV kpack;
WT_INSERT *ins;
WT_ITEM *key;
WT_PAGE *page;