openal32: void functions should not return a value

Andrew Talbot andrew.talbot at talbotville.com
Sat Aug 6 06:51:19 CDT 2011


Changelog:
    openal32: void functions should not return a value.

diff --git a/dlls/openal32/openal.c b/dlls/openal32/openal.c
index 15206f3..9e0a8f2 100644
--- a/dlls/openal32/openal.c
+++ b/dlls/openal32/openal.c
@@ -269,7 +269,7 @@ const ALCchar* CDECL wine_alcGetString(ALCdevice *device, ALCenum param)
 
 ALvoid CDECL wine_alcGetIntegerv(ALCdevice *device, ALCenum param, ALCsizei size, ALCint *dest)
 {
-    return alcGetIntegerv(device, param, size, dest);
+    alcGetIntegerv(device, param, size, dest);
 }
 
 



More information about the wine-patches mailing list