Commit 07cee87e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dmime: Use debugstr_guid() to trace a REFIID.

parent 253bffaf
...@@ -1198,7 +1198,7 @@ HRESULT WINAPI create_dmperformance(REFIID lpcGUID, void **ppobj) ...@@ -1198,7 +1198,7 @@ HRESULT WINAPI create_dmperformance(REFIID lpcGUID, void **ppobj)
{ {
IDirectMusicPerformance8Impl *obj; IDirectMusicPerformance8Impl *obj;
TRACE("(%p,%p)\n", lpcGUID, ppobj); TRACE("(%s, %p)\n", debugstr_guid(lpcGUID), ppobj);
obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicPerformance8Impl)); obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicPerformance8Impl));
if (NULL == obj) { if (NULL == obj) {
......
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