Skip to content

Commit

Permalink
fix extraction for 64th bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ate47 committed Nov 25, 2024
1 parent 82b7c64 commit f3b16b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/acts/hashutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ namespace hashutils {
}

for (const auto& v : g_extracted) {
auto e = g_hashMap.find(v);
auto e = g_hashMap.find(v & hashutils::MASK63);
if (e != g_hashMap.end()) {
out << std::hex << v << "," << e->second << "\n";
}
Expand Down

0 comments on commit f3b16b8

Please sign in to comment.