Commit 7e34aec1 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent b485f6c0
...@@ -298,9 +298,8 @@ static HRESULT WINAPI PStore_fnOpenItem( IPStore* This, PST_KEY Key, ...@@ -298,9 +298,8 @@ static HRESULT WINAPI PStore_fnOpenItem( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR szItemName, const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR szItemName,
PST_ACCESSMODE ModeFlags, PPST_PROMPTINFO pProomptInfo, DWORD dwFlags ) PST_ACCESSMODE ModeFlags, PPST_PROMPTINFO pProomptInfo, DWORD dwFlags )
{ {
FIXME("%p %08x %s %s %p %08x %p %08x\n", This, Key, FIXME("(%p,%08x,%s,%s,%s,%08x,%p,%08x) stub\n", This, Key, debugstr_guid(pItemType),
debugstr_guid(pItemType), debugstr_guid(pItemSubtype), debugstr_guid(pItemSubtype), debugstr_w(szItemName), ModeFlags, pProomptInfo, dwFlags);
debugstr_w(szItemName), ModeFlags, pProomptInfo, dwFlags);
return E_NOTIMPL; return E_NOTIMPL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment