diff options
author | Chris Robinson <[email protected]> | 2013-10-07 07:44:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-07 07:44:09 -0700 |
commit | 1518895e15262deade1b03e29b47a3d149f73c83 (patch) | |
tree | 0c3399a3edd858efd10c154753cdedb9fde128c0 /Alc/ALc.c | |
parent | 44172f701c0842fc1a31bfa93b617b361a6d3618 (diff) |
Use an UNUSED macro instead of void-tagging unused parameters
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1330,9 +1330,8 @@ void ALCdevice_UnlockDefault(ALCdevice *device) { LeaveCriticalSection(&device->Mutex); } -ALint64 ALCdevice_GetLatencyDefault(ALCdevice *device) +ALint64 ALCdevice_GetLatencyDefault(ALCdevice *UNUSED(device)) { - (void)device; return 0; } @@ -2132,18 +2131,16 @@ ALC_API ALCenum ALC_APIENTRY alcGetError(ALCdevice *device) * * Not functional */ -ALC_API ALCvoid ALC_APIENTRY alcSuspendContext(ALCcontext *Context) +ALC_API ALCvoid ALC_APIENTRY alcSuspendContext(ALCcontext *UNUSED(context)) { - (void)Context; } /* alcProcessContext * * Not functional */ -ALC_API ALCvoid ALC_APIENTRY alcProcessContext(ALCcontext *Context) +ALC_API ALCvoid ALC_APIENTRY alcProcessContext(ALCcontext *UNUSED(context)) { - (void)Context; } |