diff options
author | Chris Robinson <[email protected]> | 2016-05-30 02:10:06 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-05-30 02:10:06 -0700 |
commit | 612b24fa9186776cf77b095f723aea5b4b1fc4ab (patch) | |
tree | db185d5f504a842dd51d6e5f52fc1e82bfa0c573 /Alc/backends | |
parent | 70a105c22ca79baccbf6e9ba6a64b7c31eebe3df (diff) |
Clean up a couple variable names and declarations
Diffstat (limited to 'Alc/backends')
-rw-r--r-- | Alc/backends/base.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/backends/base.c b/Alc/backends/base.c index 07c33ba1..ff808f53 100644 --- a/Alc/backends/base.c +++ b/Alc/backends/base.c @@ -13,10 +13,9 @@ extern inline ALuint64 GetDeviceClockTime(ALCdevice *device); /* Base ALCbackend method implementations. */ void ALCbackend_Construct(ALCbackend *self, ALCdevice *device) { - int ret; - self->mDevice = device; - ret = almtx_init(&self->mMutex, almtx_recursive); + int ret = almtx_init(&self->mMutex, almtx_recursive); assert(ret == althrd_success); + self->mDevice = device; } void ALCbackend_Destruct(ALCbackend *self) |