Replaced %s by %p in EDIT_WM_SetText.

This commit is contained in:
Marcus Meissner 2000-07-15 15:12:38 +00:00 committed by Alexandre Julliard
parent 3c4e031dd9
commit 235d39cf9e

View file

@ -3989,7 +3989,7 @@ static void EDIT_WM_SetText(WND *wnd, EDITSTATE *es, LPCSTR text)
{
EDIT_EM_SetSel(wnd, es, 0, -1, FALSE);
if (text) {
TRACE("\t'%s'\n", text);
TRACE("\t'%p'\n", text);
EDIT_EM_ReplaceSel(wnd, es, FALSE, text);
} else {
TRACE("\t<NULL>\n");