From ce7752c2f52e2aa01736801f5ef5cc698eedfd0e Mon Sep 17 00:00:00 2001 From: Dedmen Miller Date: Sat, 2 Sep 2023 17:40:29 +0200 Subject: [PATCH] Updater helper print hash as hex and base10 --- UpdateHelperExe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UpdateHelperExe.cpp b/UpdateHelperExe.cpp index aa0ca02..caa63d8 100644 --- a/UpdateHelperExe.cpp +++ b/UpdateHelperExe.cpp @@ -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;