From 791b90b9898cc41869538f1dfc303588436682b7 Mon Sep 17 00:00:00 2001 From: B Stack Date: Sat, 15 Feb 2020 11:50:31 -0500 Subject: add upstream 10.20 It is worth noting that the send email feature is not present in the GPL release. --- zen/sys_error.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'zen/sys_error.h') diff --git a/zen/sys_error.h b/zen/sys_error.h index 57503732..a9347bdd 100644 --- a/zen/sys_error.h +++ b/zen/sys_error.h @@ -85,9 +85,8 @@ std::wstring formatSystemError(const std::wstring& functionName, long long lastE inline std::wstring formatSystemError(const std::wstring& functionName, ErrorCode ec) { - const std::wstring errorDescr = formatSystemErrorRaw(ec); const std::wstring errorCode = numberTo(ec); - //const std::wstring errorCode = printNumber(L"0x%08x", static_cast(ec)); + const std::wstring errorDescr = formatSystemErrorRaw(ec); return formatSystemError(functionName, replaceCpy(_("Error Code %x"), L"%x", errorCode), errorDescr); } -- cgit