Michael Stefaniuc : objsel: Avoid newlines inside FIXME messages.

Alexandre Julliard julliard at winehq.org
Thu Jan 14 11:33:33 CST 2010


Module: wine
Branch: master
Commit: c68f2148db713797bb326a83ee7d864a256d9a5d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c68f2148db713797bb326a83ee7d864a256d9a5d

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Jan 11 23:48:14 2010 +0100

objsel: Avoid newlines inside FIXME 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;
 }
 




More information about the wine-cvs mailing list