winecoreaudio.drv: Place output message before return statement.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2021-11-22 15:12:56 +02:00 committed by Alexandre Julliard
parent bdbb8591c6
commit b5b77ed6ac

View file

@ -1625,8 +1625,8 @@ static HRESULT WINAPI AudioClient_GetService(IAudioClient3 *iface, REFIID riid,
if(*ppv) hr = S_OK;
else{
return E_NOINTERFACE;
FIXME("stub %s\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
end: