wineesd.drv: Add missing return in function returning non-void.

Michael Stefaniuc mstefani at redhat.de
Tue Jan 27 18:05:45 CST 2009


Return value is analog to what the ALSA and OSS driver are doing.
---

Fixes the last "32bit" compiler warning with the gcc-svn I use for
the "--enable-win64" compile runs.


 dlls/wineesd.drv/audio.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/wineesd.drv/audio.c b/dlls/wineesd.drv/audio.c
index 161cedb..e59b711 100644
--- a/dlls/wineesd.drv/audio.c
+++ b/dlls/wineesd.drv/audio.c
@@ -1157,6 +1157,8 @@ static	DWORD	CALLBACK	wodPlayer(LPVOID pmt)
 	    dwNextFeedTime = dwNextNotifyTime = INFINITE;
 	}
     }
+
+    return 0;
 }
 
 /**************************************************************************
-- 
1.6.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20090128/5ae12f24/attachment.pgp 


More information about the wine-patches mailing list