Commit a79587df authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Fix a couple of TRACE messages.

parent bd529026
...@@ -380,7 +380,7 @@ HRESULT WINAPI CoCreateStandardMalloc16(DWORD dwMemContext, ...@@ -380,7 +380,7 @@ HRESULT WINAPI CoCreateStandardMalloc16(DWORD dwMemContext,
*/ */
HRESULT WINAPI CoDisconnectObject( LPUNKNOWN lpUnk, DWORD reserved ) HRESULT WINAPI CoDisconnectObject( LPUNKNOWN lpUnk, DWORD reserved )
{ {
TRACE("%p %lx\n",lpUnk,reserved); TRACE("(%p, %lx)\n",lpUnk,reserved);
return S_OK; return S_OK;
} }
...@@ -1626,7 +1626,7 @@ HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree) ...@@ -1626,7 +1626,7 @@ HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree)
OpenDll *ptr; OpenDll *ptr;
OpenDll *tmp; OpenDll *tmp;
TRACE("CoLoadLibrary(%p, %d\n", debugstr_w(lpszLibName), bAutoFree); TRACE("(%s, %d)\n", debugstr_w(lpszLibName), bAutoFree);
hLibrary = LoadLibraryExW(lpszLibName, 0, LOAD_WITH_ALTERED_SEARCH_PATH); hLibrary = LoadLibraryExW(lpszLibName, 0, LOAD_WITH_ALTERED_SEARCH_PATH);
......
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