objsel: : Avoid newlines inside FIXME messages.

Michael Stefaniuc mstefani at redhat.de
Mon Jan 11 16:48:14 CST 2010


This prevents automatic parsing of those messages.
---
 dlls/objsel/factory.c |    2 +-
 dlls/objsel/objsel.c  |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/objsel/factory.c b/dlls/objsel/factory.c
index 11d81b9..090c126 100644
--- a/dlls/objsel/factory.c
+++ b/dlls/objsel/factory.c
@@ -50,7 +50,7 @@ static HRESULT WINAPI OBJSEL_IClassFactory_QueryInterface(
         return IClassFactory_CreateInstance(iface, NULL, riid, ppvObj);
     }
 
-    FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
+    FIXME("- no interface IID: %s\n", debugstr_guid(riid));
     return E_NOINTERFACE;
 }
 
diff --git a/dlls/objsel/objsel.c b/dlls/objsel/objsel.c
index 51e8d0b..8179ce5 100644
--- a/dlls/objsel/objsel.c
+++ b/dlls/objsel/objsel.c
@@ -55,7 +55,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
     if (IsEqualGUID(rclsid, &CLSID_DsObjectPicker))
         return IClassFactory_QueryInterface((IClassFactory*)&OBJSEL_ClassFactory, iid, ppv);
 
-    FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
+    FIXME("CLSID: %s, IID: %s\n", debugstr_guid(rclsid), debugstr_guid(iid));
     return CLASS_E_CLASSNOTAVAILABLE;
 }
 
@@ -147,7 +147,7 @@ static HRESULT WINAPI OBJSEL_IDsObjectPicker_QueryInterface(
 	return S_OK;
     }
 
-    FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
+    FIXME("- no interface IID: %s\n", debugstr_guid(riid));
     return E_NOINTERFACE;
 }
 
-- 
1.6.6



More information about the wine-patches mailing list