Fix dumping of Unicode strings.

This commit is contained in:
Matt Chapman 2004-02-25 01:24:42 +00:00 committed by Alexandre Julliard
parent c286ca06a0
commit 9f9462a1c9
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ int DEBUG_PrintStringA(const DBG_ADDR* address, int len)
int DEBUG_PrintStringW(const DBG_ADDR* address, int len)
{
char* lin = (void*)DEBUG_ToLinear(address);
WCHAR* lin = (void*)DEBUG_ToLinear(address);
WCHAR ch[CHARBUFSIZE+1];
int written = 0;