Module: wine Branch: master Commit: b7d5543f93da9d51dee37a81163bbab6e104060e URL: http://source.winehq.org/git/wine.git/?a=commit;h=b7d5543f93da9d51dee37a8116...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:35:02 2012 +0100
dpnet: Print the debug string and not the pointer to it.
---
dlls/dpnet/dpnet_main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dpnet/dpnet_main.c b/dlls/dpnet/dpnet_main.c index 9b328b9..29cbb79 100644 --- a/dlls/dpnet/dpnet_main.c +++ b/dlls/dpnet/dpnet_main.c @@ -141,7 +141,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) { int i = 0;
- TRACE("(%p,%p,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv); + TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv); /* if ( IsEqualCLSID( &IID_IClassFactory, riid ) ) { *ppv = (LPVOID)&DPNET_CF; @@ -158,7 +158,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) ++i; }
- FIXME("(%p,%p,%p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv); + FIXME("(%s,%s,%p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv); return CLASS_E_CLASSNOTAVAILABLE; }