Skip to content

Commit

Permalink
Updater helper print hash as hex and base10
Browse files Browse the repository at this point in the history
  • Loading branch information
dedmen committed Sep 2, 2023
1 parent ff0d7e7 commit ce7752c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UpdateHelperExe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int main(int argc, char* argv[]) {
}
} else if (std::string_view(argv[1]) == "GetFileHash"sv) {
auto hash = GetFileHash(std::string_view(argv[2]));
std::cout << std::hex << hash;
std::cout << hash << " hex " << std::hex << hash;
}

return 0;
Expand Down

0 comments on commit ce7752c

Please sign in to comment.