dpvoice: Use debugstr_guid() to trace GUIDs.

Michael Stefaniuc mstefani at redhat.de
Tue Sep 27 02:59:35 CDT 2016


Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
---
 dlls/dpvoice/client.c | 3 ++-
 dlls/dpvoice/main.c   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/dpvoice/client.c b/dlls/dpvoice/client.c
index bdae160..7f6cf4a 100644
--- a/dlls/dpvoice/client.c
+++ b/dlls/dpvoice/client.c
@@ -286,7 +286,8 @@ static HRESULT WINAPI dpvtest_CheckAudioSetup(IDirectPlayVoiceTest *iface, const
                      HWND hwndParent, DWORD dwFlags)
 {
     IDirectPlayVoiceTestImpl *This = impl_from_IDirectPlayVoiceTest(iface);
-    FIXME("%p %p %p %p %d\n", This, pguidPlaybackDevice, pguidCaptureDevice, hwndParent, dwFlags);
+    FIXME("%p %s %s %p %d\n", This, debugstr_guid(pguidPlaybackDevice),
+            debugstr_guid(pguidCaptureDevice), hwndParent, dwFlags);
     return E_NOTIMPL;
 }
 
diff --git a/dlls/dpvoice/main.c b/dlls/dpvoice/main.c
index aab0859..0b49250 100644
--- a/dlls/dpvoice/main.c
+++ b/dlls/dpvoice/main.c
@@ -102,7 +102,7 @@ static IClassFactoryImpl DPVOICE_CFS[] =
 
 HRESULT WINAPI DirectPlayVoiceCreate(LPCGUID pIID, void **ppvInterface)
 {
-    FIXME("(%p, %p) stub\n", pIID, ppvInterface);
+    FIXME("(%s, %p) stub\n", debugstr_guid(pIID), ppvInterface);
     return E_NOTIMPL;
 }
 
-- 
2.7.4



More information about the wine-patches mailing list