shell32: Print the debug string and not the pointer to it.
This commit is contained in:
parent
810b619e2b
commit
798beb2cb8
|
@ -355,8 +355,8 @@ static HRESULT WINAPI IExtractIconW_fnExtract(IExtractIconW * iface, LPCWSTR psz
|
||||||
IExtractIconWImpl *This = impl_from_IExtractIconW(iface);
|
IExtractIconWImpl *This = impl_from_IExtractIconW(iface);
|
||||||
int index;
|
int index;
|
||||||
|
|
||||||
FIXME("(%p) (file=%p index=%d %p %p size=%08x) semi-stub\n", This, debugstr_w(pszFile), (signed)nIconIndex,
|
FIXME("(%p) (file=%s index=%d %p %p size=%08x) semi-stub\n", This, debugstr_w(pszFile),
|
||||||
phiconLarge, phiconSmall, nIconSize);
|
(signed)nIconIndex, phiconLarge, phiconSmall, nIconSize);
|
||||||
|
|
||||||
index = SIC_GetIconIndex(pszFile, nIconIndex, 0);
|
index = SIC_GetIconIndex(pszFile, nIconIndex, 0);
|
||||||
|
|
||||||
|
|
|
@ -3578,7 +3578,7 @@ static HRESULT WINAPI knownfolder_SetPath(
|
||||||
struct knownfolder *knownfolder = impl_from_IKnownFolder( iface );
|
struct knownfolder *knownfolder = impl_from_IKnownFolder( iface );
|
||||||
HRESULT hr = S_OK;
|
HRESULT hr = S_OK;
|
||||||
|
|
||||||
TRACE("(%p, 0x%08x, %p)\n", knownfolder, dwFlags, debugstr_w(pszPath));
|
TRACE("(%p, 0x%08x, %s)\n", knownfolder, dwFlags, debugstr_w(pszPath));
|
||||||
|
|
||||||
/* check if the known folder is registered */
|
/* check if the known folder is registered */
|
||||||
if(!knownfolder->registryPath)
|
if(!knownfolder->registryPath)
|
||||||
|
|
Loading…
Reference in New Issue