sapi: Fix typo in ISpVoice::SetOutput() trace.

Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Gijs Vermeulen 2020-11-22 15:44:54 +01:00 committed by Alexandre Julliard
parent b97542cef7
commit 056e3fc7fd
1 changed files with 1 additions and 1 deletions

View File

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