score: Fix _Scheduler_EDF_Cancel_job_filter()

Commit 21bdca49ee accidentally used a
function which may be added later.
This commit is contained in:
Sebastian Huber
2016-08-04 08:31:25 +02:00
parent 1c1e31f788
commit 6117f29cd4

View File

@@ -69,7 +69,7 @@ static bool _Scheduler_EDF_Cancel_job_filter(
node = _Scheduler_EDF_Thread_get_node( the_thread );
current_priority = _Thread_Get_priority( the_thread );
current_priority = the_thread->current_priority;
new_priority = node->background_priority;
node->current_priority = new_priority;