comdlg32: Print the debug string and not the pointer to it.

This commit is contained in:
Michael Stefaniuc 2012-03-21 23:33:52 +01:00 committed by Alexandre Julliard
parent e6a30efe70
commit d63ae3658b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}