From 982f139d1913906eac0bd2a0dff40216302b83bc Mon Sep 17 00:00:00 2001 From: Juergen Schmied Date: Wed, 28 Oct 1998 14:58:02 +0000 Subject: [PATCH] A dest buffer was printed out as string. --- windows/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/win.c b/windows/win.c index 7a116dac7bc..f767fe98c30 100644 --- a/windows/win.c +++ b/windows/win.c @@ -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); }