Commit 7318b7cb by Cooper Partin Committed by Geoff Lang

Fixed failed compilation for WinRT to use OutputDebugStringA for non wide strings.

Change-Id: If012660d4b895399fe5e3226dea25a8c7f78c8ac Reviewed-on: https://chromium-review.googlesource.com/239504Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarCooper Partin <coopp@microsoft.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 40856813
......@@ -215,7 +215,7 @@ static void output(bool traceInDebugOnly, MessageType messageType, DebugTraceOut
{
formattedMessage = FormatString(format, vararg);
}
OutputDebugString(formattedMessage.c_str());
OutputDebugStringA(formattedMessage.c_str());
}
#endif
......
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