From a79587df2372c311011a44c120e7d6f42f5995ea Mon Sep 17 00:00:00 2001 From: Huw D M Davies <hdavies@codeweavers.com> Date: Fri, 29 Sep 2000 00:23:45 +0000 Subject: [PATCH] Fix a couple of TRACE messages. --- dlls/ole32/compobj.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c index 589ea3b1b78..865291de5c1 100644 --- a/dlls/ole32/compobj.c +++ b/dlls/ole32/compobj.c @@ -380,7 +380,7 @@ HRESULT WINAPI CoCreateStandardMalloc16(DWORD dwMemContext, */ HRESULT WINAPI CoDisconnectObject( LPUNKNOWN lpUnk, DWORD reserved ) { - TRACE("%p %lx\n",lpUnk,reserved); + TRACE("(%p, %lx)\n",lpUnk,reserved); return S_OK; } @@ -1626,7 +1626,7 @@ HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree) OpenDll *ptr; 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); -- GitLab