Module: wine Branch: master Commit: 07cee87e8f42b36d3494715fd75991cd83e32708 URL: http://source.winehq.org/git/wine.git/?a=commit;h=07cee87e8f42b36d3494715fd7...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Jul 26 10:43:03 2016 +0200
dmime: Use debugstr_guid() to trace a REFIID.
Signed-off-by: Michael Stefaniuc mstefani@redhat.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dmime/performance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dmime/performance.c b/dlls/dmime/performance.c index 8b5d3e2..d1befcf 100644 --- a/dlls/dmime/performance.c +++ b/dlls/dmime/performance.c @@ -1198,7 +1198,7 @@ HRESULT WINAPI create_dmperformance(REFIID lpcGUID, void **ppobj) { IDirectMusicPerformance8Impl *obj;
- TRACE("(%p,%p)\n", lpcGUID, ppobj); + TRACE("(%s, %p)\n", debugstr_guid(lpcGUID), ppobj);
obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicPerformance8Impl)); if (NULL == obj) {