diff options
author | Chris Robinson <[email protected]> | 2018-11-17 06:07:04 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-17 06:07:04 -0800 |
commit | 7b537c795bd174b4b02418a37b377b4da5cfe266 (patch) | |
tree | b0e7485d4ae66518194bd03128f56ffda1c199ec /Alc/backends/alsa.cpp | |
parent | 1fae8c16a8c0634ffa44b4a2e25f3be4899ea7e2 (diff) |
Don't pass the current thread to althrd_setname
Diffstat (limited to 'Alc/backends/alsa.cpp')
-rw-r--r-- | Alc/backends/alsa.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/alsa.cpp b/Alc/backends/alsa.cpp index ee42842b..d02d5d20 100644 --- a/Alc/backends/alsa.cpp +++ b/Alc/backends/alsa.cpp @@ -472,7 +472,7 @@ int ALCplaybackAlsa_mixerProc(ALCplaybackAlsa *self) ALCdevice *device{STATIC_CAST(ALCbackend, self)->mDevice}; SetRTPriority(); - althrd_setname(althrd_current(), MIXER_THREAD_NAME); + althrd_setname(MIXER_THREAD_NAME); snd_pcm_uframes_t update_size{device->UpdateSize}; snd_pcm_uframes_t num_updates{device->NumUpdates}; @@ -559,7 +559,7 @@ int ALCplaybackAlsa_mixerNoMMapProc(ALCplaybackAlsa *self) ALCdevice *device{STATIC_CAST(ALCbackend, self)->mDevice}; SetRTPriority(); - althrd_setname(althrd_current(), MIXER_THREAD_NAME); + althrd_setname(MIXER_THREAD_NAME); snd_pcm_uframes_t update_size{device->UpdateSize}; snd_pcm_uframes_t num_updates{device->NumUpdates}; |