Commit 235d39cf authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Replaced %s by %p in EDIT_WM_SetText.

parent 3c4e031d
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment