mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[test.h]
Fix a warning on MSVC svn path=/trunk/; revision=52315
This commit is contained in:
parent
8ff6df4108
commit
06900a0535
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,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++ = '\\';
|
||||
|
|
Loading…
Reference in a new issue