From 612b24fa9186776cf77b095f723aea5b4b1fc4ab Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 30 May 2016 02:10:06 -0700 Subject: Clean up a couple variable names and declarations --- Alc/ALc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Alc/ALc.c') diff --git a/Alc/ALc.c b/Alc/ALc.c index b4582b0e..d41aa0d4 100644 --- a/Alc/ALc.c +++ b/Alc/ALc.c @@ -782,13 +782,13 @@ static ATOMIC(ALCdevice*) DeviceList = ATOMIC_INIT_STATIC(NULL); static almtx_t ListLock; static inline void LockLists(void) { - int lockret = almtx_lock(&ListLock); - assert(lockret == althrd_success); + int ret = almtx_lock(&ListLock); + assert(ret == althrd_success); } static inline void UnlockLists(void) { - int unlockret = almtx_unlock(&ListLock); - assert(unlockret == althrd_success); + int ret = almtx_unlock(&ListLock); + assert(ret == althrd_success); } /************************************************ -- cgit v1.2.3