summaryrefslogtreecommitdiff
path: root/src/btree/bt_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/btree/bt_debug.c')
-rw-r--r--src/btree/bt_debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/btree/bt_debug.c b/src/btree/bt_debug.c
index 538c363a864..c3f98a98ec5 100644
--- a/src/btree/bt_debug.c
+++ b/src/btree/bt_debug.c
@@ -985,9 +985,9 @@ static int
__debug_update(WT_DBG *ds, WT_UPDATE *upd, bool hexbyte)
{
for (; upd != NULL; upd = upd->next)
- if (WT_UPDATE_DELETED_ISSET(upd))
+ if (upd->type == WT_UPDATE_DELETED)
WT_RET(ds->f(ds, "\tvalue {deleted}\n"));
- else if (WT_UPDATE_RESERVED_ISSET(upd))
+ else if (upd->type == WT_UPDATE_RESERVED)
WT_RET(ds->f(ds, "\tvalue {reserved}\n"));
else if (hexbyte) {
WT_RET(ds->f(ds, "\t{"));