mirror of
https://github.com/reactos/reactos.git
synced 2025-05-27 13:08:23 +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;
|
case '\\': *dst++ = '\\'; *dst++ = '\\'; break;
|
||||||
default:
|
default:
|
||||||
if (c >= ' ' && c <= 126)
|
if (c >= ' ' && c <= 126)
|
||||||
*dst++ = c;
|
*dst++ = (char)c;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
*dst++ = '\\';
|
*dst++ = '\\';
|
||||||
|
|
Loading…
Reference in a new issue