From 9c73849f3b2c92d7ea8d9a1645ec33b63f618fd8 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 23 Dec 2023 09:30:08 +1000 Subject: [PATCH] Fix a typo. --- miniaudio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index d0293e6a..24ce3941 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -16147,9 +16147,9 @@ static ma_result ma_thread_create__posix(ma_thread* pThread, ma_thread_priority if (priority == ma_thread_priority_idle) { sched.sched_priority = priorityMin; } 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 {