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/pulseaudio.cpp | |
parent | 1fae8c16a8c0634ffa44b4a2e25f3be4899ea7e2 (diff) |
Don't pass the current thread to althrd_setname
Diffstat (limited to 'Alc/backends/pulseaudio.cpp')
-rw-r--r-- | Alc/backends/pulseaudio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/pulseaudio.cpp b/Alc/backends/pulseaudio.cpp index 38623783..df2eb656 100644 --- a/Alc/backends/pulseaudio.cpp +++ b/Alc/backends/pulseaudio.cpp @@ -866,7 +866,7 @@ int PulsePlayback_mixerProc(PulsePlayback *self) ALCdevice *device{STATIC_CAST(ALCbackend,self)->mDevice}; SetRTPriority(); - althrd_setname(althrd_current(), MIXER_THREAD_NAME); + althrd_setname(MIXER_THREAD_NAME); unique_palock palock{self->loop}; size_t frame_size{pa_frame_size(&self->spec)}; |