openal32: void functions should not return a value.

This commit is contained in:
Andrew Talbot 2011-08-06 12:51:19 +01:00 committed by Alexandre Julliard
parent 3fe447f58e
commit e3ff452f39
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}