Replaced %s by %p in EDIT_WM_SetText.
This commit is contained in:
parent
3c4e031dd9
commit
235d39cf9e
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue