Michael Stefaniuc : dmusic: Avoid newlines inside FIXME messages.

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


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

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

dmusic: Avoid newlines inside FIXME messages.

---

 dlls/dmusic/dmusic_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dmusic/dmusic_main.c b/dlls/dmusic/dmusic_main.c
index 32171fa..9c0e78f 100644
--- a/dlls/dmusic/dmusic_main.c
+++ b/dlls/dmusic/dmusic_main.c
@@ -36,7 +36,7 @@ typedef struct {
  *		DirectMusic ClassFactory
  */
 static HRESULT WINAPI DirectMusicCF_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;
 	
@@ -85,7 +85,7 @@ static IClassFactoryImpl DirectMusic_CF = {&DirectMusicCF_Vtbl};
  *		DirectMusicCollection ClassFactory
  */
 static HRESULT WINAPI CollectionCF_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;
 	




More information about the wine-cvs mailing list