From 599d02bd2efc6a7388da41c6c0dad8bc016b929d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 10 Nov 2025 20:12:53 +0100 Subject: [PATCH] Amend previous commit, fix diff --- libs/pbd/pthread_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pthread_utils.cc b/libs/pbd/pthread_utils.cc index 2a60a72f32..d2d24f38c4 100644 --- a/libs/pbd/pthread_utils.cc +++ b/libs/pbd/pthread_utils.cc @@ -443,7 +443,7 @@ pbd_set_thread_priority (pthread_t thread, int policy, int priority) DEBUG_TRACE (PBD::DEBUG::Threads, string_compose ("Change '%1' to policy = %2 priority = %3\n", pthread_name(), policy, param.sched_priority)); #ifdef PLATFORM_WINDOWS -- if (is_pthread_active (thread) && param.sched_priority >= 12) { + if (is_pthread_active (thread) && param.sched_priority >= 12) { if (set_win_set_realtime_policy (thread, param.sched_priority)) { return 0; }