Module: wine Branch: master Commit: 056e3fc7fdb9363a43c3e2292fb2627e3b4836fb URL: https://source.winehq.org/git/wine.git/?a=commit;h=056e3fc7fdb9363a43c3e2292... Author: Gijs Vermeulen <gijsvrm(a)gmail.com> Date: Sun Nov 22 15:44:54 2020 +0100 sapi: Fix typo in ISpVoice::SetOutput() trace. Signed-off-by: Gijs Vermeulen <gijsvrm(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/sapi/tts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/sapi/tts.c b/dlls/sapi/tts.c index 77e54e079ac..6c5e89de25c 100644 --- a/dlls/sapi/tts.c +++ b/dlls/sapi/tts.c @@ -517,7 +517,7 @@ static HRESULT WINAPI spvoice_GetInfo(ISpVoice *iface, SPEVENTSOURCEINFO *info) static HRESULT WINAPI spvoice_SetOutput(ISpVoice *iface, IUnknown *unk, BOOL changes) { - FIXME("(%p, %p, %d: stub.\n)", iface, unk, changes); + FIXME("(%p, %p, %d): stub.\n", iface, unk, changes); return E_NOTIMPL; }