Merge pull request #397 from hharte/master

reader: Fix conflicting sector error message.
This commit is contained in:
David Given
2022-01-02 17:38:11 +01:00
committed by GitHub

View File

@@ -52,7 +52,7 @@ static std::set<std::shared_ptr<Sector>> collect_sectors(std::set<std::shared_pt
{ {
std::cout << fmt::format( std::cout << fmt::format(
"\n multiple conflicting copies of sector {} seen; ", "\n multiple conflicting copies of sector {} seen; ",
std::get<0>(sectorid), std::get<1>(sectorid), std::get<2>(sectorid)); std::get<2>(sectorid));
replacing->status = replacement->status = Sector::CONFLICT; replacing->status = replacement->status = Sector::CONFLICT;
} }
} }