aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/alError.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/alError.c b/OpenAL32/alError.c
index 04700d97..6d3870fd 100644
--- a/OpenAL32/alError.c
+++ b/OpenAL32/alError.c
@@ -35,6 +35,7 @@ ALboolean TrapALError = AL_FALSE;
ALvoid alSetError(ALCcontext *Context, ALenum errorCode)
{
+ ALenum curerr = AL_NO_ERROR;
if(TrapALError)
{
#ifdef _WIN32
@@ -45,7 +46,7 @@ ALvoid alSetError(ALCcontext *Context, ALenum errorCode)
raise(SIGTRAP);
#endif
}
- ATOMIC_COMPARE_EXCHANGE(ALenum, Context->LastError, AL_NO_ERROR, errorCode);
+ (void)ATOMIC_COMPARE_EXCHANGE(ALenum, Context->LastError, curerr, errorCode);
}
AL_API ALenum AL_APIENTRY alGetError(void)