Skip to content
Snippets Groups Projects
Commit cf9b5b0f authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard
Browse files

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

parent d63ae365
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment