Module: wine Branch: master Commit: f6a34c4ece9b59898b892b5ab3ebb5f308bc819d URL: http://source.winehq.org/git/wine.git/?a=commit;h=f6a34c4ece9b59898b892b5ab3...
Author: Michael Stefaniuc mstefani@redhat.de Date: Mon Jan 11 23:47:59 2010 +0100
dmsynth: Avoid newlines inside FIXME messages.
---
dlls/dmsynth/dmsynth_main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dmsynth/dmsynth_main.c b/dlls/dmsynth/dmsynth_main.c index 607b865..9cf4bc8 100644 --- a/dlls/dmsynth/dmsynth_main.c +++ b/dlls/dmsynth/dmsynth_main.c @@ -36,7 +36,7 @@ typedef struct { * DirectMusicSynth ClassFactory */ static HRESULT WINAPI SynthCF_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 Synth_CF = {&SynthCF_Vtbl}; * DirectMusicSynthSink ClassFactory */ static HRESULT WINAPI SynthSinkCF_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;