dmband: Avoid newlines inside FIXME messages.

This commit is contained in:
Michael Stefaniuc 2010-01-19 00:44:14 +01:00 committed by Alexandre Julliard
parent ecbeda64dd
commit dfc4f8e5f1

View File

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