Do not complain on empty first block

master
Vitaliy Filippov 2023-10-25 14:22:03 +03:00
parent 19426aa4c5
commit 763e77b4f4
1 changed files with 2 additions and 1 deletions

View File

@ -233,7 +233,8 @@ int kv_block_t::parse(uint64_t offset, uint8_t *data, int size)
if (blk->magic == 0 || blk->type == KV_EMPTY)
{
// empty block
fprintf(stderr, "K/V: Block %lu is %s\n", offset, blk->magic == 0 ? "empty" : "cleared");
if (offset != 0)
fprintf(stderr, "K/V: Block %lu is %s\n", offset, blk->magic == 0 ? "empty" : "cleared");
return -ENOTBLK;
}
if (blk->magic != KV_BLOCK_MAGIC || blk->block_size != size ||