David Hedberg : shell32: Fix trace formatting in SHGetNameFromIDList.
Module: wine Branch: master Commit: c9372a1c3c787a1cdbe0d094fc03652de571a820 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c9372a1c3c787a1cdbe0d094fc... Author: David Hedberg <dhedberg(a)codeweavers.com> Date: Mon Nov 8 00:06:15 2010 +0100 shell32: Fix trace formatting in SHGetNameFromIDList. --- dlls/shell32/pidl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/pidl.c b/dlls/shell32/pidl.c index 1c9cf22..266c444 100644 --- a/dlls/shell32/pidl.c +++ b/dlls/shell32/pidl.c @@ -1357,7 +1357,7 @@ HRESULT WINAPI SHGetNameFromIDList(PCIDLIST_ABSOLUTE pidl, SIGDN sigdnName, PWST STRRET disp_name; HRESULT ret; - TRACE("%p %d %p\n", pidl, sigdnName, ppszName); + TRACE("%p 0x%08x %p\n", pidl, sigdnName, ppszName); *ppszName = NULL; ret = SHBindToParent(pidl, &IID_IShellFolder, (void**)&psfparent, &child_pidl);
participants (1)
-
Alexandre Julliard