Andrey Gusev : winecoreaudio.drv: Place output message before return statement.

Alexandre Julliard julliard at winehq.org
Mon Nov 22 16:05:19 CST 2021


Module: wine
Branch: master
Commit: b5b77ed6acad6a20bd4c5bfc98cfce178eef1d0c
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b5b77ed6acad6a20bd4c5bfc98cfce178eef1d0c

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Mon Nov 22 15:12:56 2021 +0200

winecoreaudio.drv: Place output message before return statement.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 7ec282c514d..2ad2938a5d8 100644
--- a/dlls/winecoreaudio.drv/mmdevdrv.c
+++ b/dlls/winecoreaudio.drv/mmdevdrv.c
@@ -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:




More information about the wine-cvs mailing list