diff options
author | Chris Robinson <[email protected]> | 2014-12-21 10:38:40 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-12-21 10:38:40 -0800 |
commit | 28a9f0826c8ab7a645d1cd60151d6590ec490c1b (patch) | |
tree | bf585d7b08fdc0dfec8537934aeefa4f1329c450 /Alc/backends/oss.c | |
parent | 6574fa4863d3f913ab99ccca9a699e1125c2d11e (diff) |
Use a macro for the record thread name
Diffstat (limited to 'Alc/backends/oss.c')
-rw-r--r-- | Alc/backends/oss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/oss.c b/Alc/backends/oss.c index 631a496e..e4478515 100644 --- a/Alc/backends/oss.c +++ b/Alc/backends/oss.c @@ -345,7 +345,7 @@ static int ALCcaptureOSS_recordProc(void *ptr) int amt; SetRTPriority(); - althrd_setname(althrd_current(), "alsoft-record"); + althrd_setname(althrd_current(), RECORD_THREAD_NAME); frameSize = FrameSizeFromDevFmt(device->FmtChans, device->FmtType); |