Commit 2f58f41d authored by Lingfeng Yang's avatar Lingfeng Yang
Browse files

unbreak windows build

windows msvc toolchain with werror and wconversion
will break if converting long to DWORD.
parent f71fb4f9
...@@ -1691,7 +1691,7 @@ AssertionResult HRESULTFailureHelper(const char* expr, ...@@ -1691,7 +1691,7 @@ AssertionResult HRESULTFailureHelper(const char* expr,
char error_text[kBufSize] = { '\0' }; char error_text[kBufSize] = { '\0' };
DWORD message_length = ::FormatMessageA(kFlags, DWORD message_length = ::FormatMessageA(kFlags,
0, // no source, we're asking system 0, // no source, we're asking system
hr, // the error static_cast<DWORD>(hr), // the error
0, // no line width restrictions 0, // no line width restrictions
error_text, // output buffer error_text, // output buffer
kBufSize, // buf size kBufSize, // buf size
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment