Commit cf9b5b0f authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dxdiagn: Print the debug string and not the pointer to it.

parent d63ae365
......@@ -269,8 +269,8 @@ static const IDxDiagContainerVtbl DxDiagContainer_Vtbl =
HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, IDxDiagContainerImpl_Container *cont, IDxDiagProvider *pProv, LPVOID *ppobj) {
IDxDiagContainerImpl* container;
TRACE("(%p, %p)\n", debugstr_guid(riid), ppobj);
TRACE("(%s, %p)\n", debugstr_guid(riid), ppobj);
container = HeapAlloc(GetProcessHeap(), 0, sizeof(IDxDiagContainerImpl));
if (NULL == container) {
*ppobj = NULL;
......
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