dmband: Avoid newlines inside FIXME messages.

Michael Stefaniuc mstefani at redhat.de
Mon Jan 18 17:44:14 CST 2010


---
 dlls/dmband/dmband_main.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/dmband/dmband_main.c b/dlls/dmband/dmband_main.c
index b99f64d..30d8f6b 100644
--- a/dlls/dmband/dmband_main.c
+++ b/dlls/dmband/dmband_main.c
@@ -32,10 +32,10 @@ typedef struct {
  */
  
 static HRESULT WINAPI BandCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
-	FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
+	FIXME("- no interface IID: %s\n", debugstr_guid(riid));
 
 	if (ppobj == NULL) return E_POINTER;
-	
+
 	return E_NOINTERFACE;
 }
 
@@ -84,10 +84,10 @@ static IClassFactoryImpl Band_CF = {&BandCF_Vtbl};
  */
  
 static HRESULT WINAPI BandTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
-	FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
-	
+	FIXME("- no interface IID: %s\n", debugstr_guid(riid));
+
 	if (ppobj == NULL) return E_POINTER;
-	
+
 	return E_NOINTERFACE;
 }
 
-- 
1.6.6



More information about the wine-patches mailing list