From: Bernhard Kölbl <bkoelbl@codeweavers.com> --- dlls/windows.media.speech/synthesizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windows.media.speech/synthesizer.c b/dlls/windows.media.speech/synthesizer.c index d9fec2c651b..45a0076363b 100644 --- a/dlls/windows.media.speech/synthesizer.c +++ b/dlls/windows.media.speech/synthesizer.c @@ -115,7 +115,7 @@ static HRESULT WINAPI voice_information_get_DisplayName( IVoiceInformation *ifac { struct voice_information *impl = impl_from_IVoiceInformation(iface); - TRACE("iface %p, value %p!n", iface, value); + TRACE("iface %p, value %p\n", iface, value); return WindowsDuplicateString(impl->display_name, value); } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10773