A dest buffer was printed out as string.

This commit is contained in:
Juergen Schmied 1998-10-28 14:58:02 +00:00 committed by Alexandre Julliard
parent 5b00ec7c4d
commit 982f139d19
1 changed files with 1 additions and 1 deletions

View File

@ -1797,7 +1797,7 @@ INT32 WINAPI GetWindowText32A( HWND32 hwnd, LPSTR lpString, INT32 nMaxCount )
*/
INT32 WINAPI InternalGetWindowText(HWND32 hwnd,LPWSTR lpString,INT32 nMaxCount )
{
FIXME(win,"(0x%08x,%s,0x%x),stub!\n",hwnd,debugstr_w(lpString),nMaxCount);
FIXME(win,"(0x%08x,%p,0x%x),stub!\n",hwnd,lpString,nMaxCount);
return GetWindowText32W(hwnd,lpString,nMaxCount);
}