Amend previous commit, fix diff

This commit is contained in:
Robin Gareus 2025-11-10 20:12:53 +01:00
parent 8929147566
commit 599d02bd2e
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -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;
}