Fix a typo.

This commit is contained in:
David Reid
2023-12-23 09:30:08 +10:00
parent fde3a27d93
commit 9c73849f3b
+2 -2
View File
@@ -16147,9 +16147,9 @@ static ma_result ma_thread_create__posix(ma_thread* pThread, ma_thread_priority
if (priority == ma_thread_priority_idle) { if (priority == ma_thread_priority_idle) {
sched.sched_priority = priorityMin; sched.sched_priority = priorityMin;
} else if (priority == ma_thread_priority_realtime) { } else if (priority == ma_thread_priority_realtime) {
#if defined(MA_PTHREAD_REALTTIME_THREAD_PRIORITY) #if defined(MA_PTHREAD_REALTIME_THREAD_PRIORITY)
{ {
sched.sched_priority = MA_PTHREAD_REALTTIME_THREAD_PRIORITY; sched.sched_priority = MA_PTHREAD_REALTIME_THREAD_PRIORITY;
} }
#else #else
{ {