Module: wine Branch: master Commit: 7e34aec1a0cd6db767a5aa005e709e9c4d77737a URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e34aec1a0cd6db767a5aa005e...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:38:32 2012 +0100
pstorec: Print the debug string and not the pointer to it.
---
dlls/pstorec/pstorec.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/dlls/pstorec/pstorec.c b/dlls/pstorec/pstorec.c index b2e729b..0a6a6c1 100644 --- a/dlls/pstorec/pstorec.c +++ b/dlls/pstorec/pstorec.c @@ -298,9 +298,8 @@ static HRESULT WINAPI PStore_fnOpenItem( IPStore* This, PST_KEY Key, const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR szItemName, PST_ACCESSMODE ModeFlags, PPST_PROMPTINFO pProomptInfo, DWORD dwFlags ) { - FIXME("%p %08x %s %s %p %08x %p %08x\n", This, Key, - debugstr_guid(pItemType), debugstr_guid(pItemSubtype), - debugstr_w(szItemName), ModeFlags, pProomptInfo, dwFlags); + FIXME("(%p,%08x,%s,%s,%s,%08x,%p,%08x) stub\n", This, Key, debugstr_guid(pItemType), + debugstr_guid(pItemSubtype), debugstr_w(szItemName), ModeFlags, pProomptInfo, dwFlags); return E_NOTIMPL; }