From 8f780e76e16400408d5a1ad4badf2e4232b838e8 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 23 Apr 2018 22:17:56 -0700 Subject: [PATCH] Fixed build --- src/thread/pthread/SDL_systhread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/pthread/SDL_systhread.c b/src/thread/pthread/SDL_systhread.c index 4842d9c80be44..28a1a58fbbe21 100644 --- a/src/thread/pthread/SDL_systhread.c +++ b/src/thread/pthread/SDL_systhread.c @@ -299,7 +299,7 @@ SDL_SYS_SetThreadPriority(SDL_ThreadPriority priority) int max_priority = sched_get_priority_max(policy); sched.sched_priority = (min_priority + (max_priority - min_priority) / 2); if (priority == SDL_THREAD_PRIORITY_HIGH) { - sched.sched_priority += (max_priority - min_priority) / 4); + sched.sched_priority += ((max_priority - min_priority) / 4); } } if (pthread_setschedparam(thread, policy, &sched) != 0) {