Commit a640a7a3 authored by Mathew Hodson's avatar Mathew Hodson Committed by Alexandre Julliard

include: Add cast to avoid a compiler warning on MSVC.

parent 9d250fbf
......@@ -511,7 +511,7 @@ const char *wine_dbgstr_wn( const WCHAR *str, int n )
case '\\': *dst++ = '\\'; *dst++ = '\\'; break;
default:
if (c >= ' ' && c <= 126)
*dst++ = c;
*dst++ = (char)c;
else
{
*dst++ = '\\';
......
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