Michael Stefaniuc : dmband: Avoid newlines inside FIXME messages.

Alexandre Julliard julliard at winehq.org
Tue Jan 19 11:53:43 CST 2010


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Jan 19 00:44:14 2010 +0100

dmband: Avoid newlines inside FIXME messages.

---

 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;
 }
 




More information about the wine-cvs mailing list