Module: wine Branch: master Commit: d63ae3658b817557ac56ff575094a668df38f95d URL: http://source.winehq.org/git/wine.git/?a=commit;h=d63ae3658b817557ac56ff5750...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:33:52 2012 +0100
comdlg32: Print the debug string and not the pointer to it.
---
dlls/comdlg32/itemdlg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comdlg32/itemdlg.c b/dlls/comdlg32/itemdlg.c index f700891..3955a75 100644 --- a/dlls/comdlg32/itemdlg.c +++ b/dlls/comdlg32/itemdlg.c @@ -3527,7 +3527,7 @@ static HRESULT WINAPI IFileDialogCustomize_fnSetControlItemText(IFileDialogCusto LPCWSTR pszLabel) { FileDialogImpl *This = impl_from_IFileDialogCustomize(iface); - FIXME("stub - %p (%d, %d, %p)\n", This, dwIDCtl, dwIDItem, debugstr_w(pszLabel)); + FIXME("stub - %p (%d, %d, %s)\n", This, dwIDCtl, dwIDItem, debugstr_w(pszLabel)); return E_NOTIMPL; }