[PATCH] winecoreaudio.drv: Place output message before return statement.

Andrey Gusev andrey.goosev at gmail.com
Mon Nov 22 07:12:56 CST 2021


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/winecoreaudio.drv/mmdevdrv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winecoreaudio.drv/mmdevdrv.c b/dlls/winecoreaudio.drv/mmdevdrv.c
index 1e37a2a9026..c87aff590e2 100644
--- a/dlls/winecoreaudio.drv/mmdevdrv.c
+++ b/dlls/winecoreaudio.drv/mmdevdrv.c
@@ -2092,8 +2092,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:
-- 
2.33.1




More information about the wine-devel mailing list