Commit d97d922a authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 70d842b1
......@@ -290,7 +290,7 @@ static inline const char *wine_dbgstr_wn( const WCHAR *str, int n )
*dst++ = hex[(c >> 4) & 0x0f];
*dst++ = hex[c & 0x0f];
}
else *dst++ = c;
else *dst++ = (char)c;
}
}
*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