From 235d39cf9e99843a247bd8d01dd8f8aa372071fa Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sat, 15 Jul 2000 15:12:38 +0000 Subject: [PATCH] Replaced %s by %p in EDIT_WM_SetText. --- controls/edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controls/edit.c b/controls/edit.c index 0ef7b08e477..eb5c4189aca 100644 --- a/controls/edit.c +++ b/controls/edit.c @@ -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\n");