[test.h]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 17 Jun 2011 14:08:41 +0000 (14:08 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 17 Jun 2011 14:08:41 +0000 (14:08 +0000)
Fix a warning on MSVC

svn path=/trunk/; revision=52315

reactos/include/reactos/wine/test.h

index fdf3c88..97d1d11 100644 (file)
@@ -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++ = '\\';