[metadata_checker] Fix expected ref-counts in data space map comparison

This commit is contained in:
Ming-Hung Tsai 2020-08-10 03:30:19 +08:00
parent 7c3145633b
commit c952f52c79
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ namespace {
} else {
for (block_address b = 0; b < nr_blocks; b++) {
auto a_count = actual->get_count(b);
auto e_count = actual->get_count(b);
auto e_count = expected->get_count(b);
if (a_count != e_count) {
out << "data reference counts differ for block " << b