dlls/ole32: Silence a FIXME

Hugh McMaster hugh.mcmaster at outlook.com
Mon May 25 00:56:07 CDT 2015


This fixme appears on wine init either before console output or after it.
The fixme text is interrupting the output for Wine's CLI-based programs,
making the output difficult to read.

---
 dlls/ole32/stubmanager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ole32/stubmanager.c b/dlls/ole32/stubmanager.c
index fda4944..815ec8c 100644
--- a/dlls/ole32/stubmanager.c
+++ b/dlls/ole32/stubmanager.c
@@ -640,7 +640,7 @@ static HRESULT WINAPI RemUnknown_QueryInterface(IRemUnknown *iface, REFIID riid,
         return S_OK;
     }
 
-    FIXME("No interface for iid %s\n", debugstr_guid(riid));
+    TRACE("No interface for iid %s\n", debugstr_guid(riid)); /* FIXME */
 
     *ppv = NULL;
     return E_NOINTERFACE;
-- 
1.9.1




More information about the wine-patches mailing list