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

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46991
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-04-11 09:18:46 +02:00
parent 70d842b106
commit d97d922afd
1 changed files with 1 additions and 1 deletions

View File

@ -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++ = '"';