objsel: Avoid newlines inside FIXME messages.

This commit is contained in:
Michael Stefaniuc 2010-01-11 23:48:14 +01:00 committed by Alexandre Julliard
parent 31ef27ed57
commit c68f2148db
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ static HRESULT WINAPI OBJSEL_IClassFactory_QueryInterface(
return IClassFactory_CreateInstance(iface, NULL, riid, ppvObj);
}
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
return E_NOINTERFACE;
}

View file

@ -55,7 +55,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
if (IsEqualGUID(rclsid, &CLSID_DsObjectPicker))
return IClassFactory_QueryInterface((IClassFactory*)&OBJSEL_ClassFactory, iid, ppv);
FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
FIXME("CLSID: %s, IID: %s\n", debugstr_guid(rclsid), debugstr_guid(iid));
return CLASS_E_CLASSNOTAVAILABLE;
}
@ -147,7 +147,7 @@ static HRESULT WINAPI OBJSEL_IDsObjectPicker_QueryInterface(
return S_OK;
}
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
return E_NOINTERFACE;
}