From 60fcb168fe965632a32a3c7c13b0cfecad89fc7b Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Mon, 10 Nov 2025 02:19:43 +0300 Subject: [PATCH] Fix assert --- src/blockstore/blockstore_read.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockstore/blockstore_read.cpp b/src/blockstore/blockstore_read.cpp index b433c89e..6e72abfb 100644 --- a/src/blockstore/blockstore_read.cpp +++ b/src/blockstore/blockstore_read.cpp @@ -275,7 +275,7 @@ void blockstore_impl_t::prepare_disk_read(std::vector & read_vec, { big_wr = heap->prev(big_wr); } - assert(big_wr->type() == BS_HEAP_BIG_WRITE || big_wr->type() == BS_HEAP_INTENT_WRITE); + assert(big_wr->type() == BS_HEAP_BIG_WRITE || big_wr->type() == BS_HEAP_BIG_INTENT); loc = big_wr->big_location(heap); } else if (wr->type() == BS_HEAP_SMALL_WRITE)