Skip to content
Snippets Groups Projects
Commit 953fd28c authored by Tobias Bouschen's avatar Tobias Bouschen
Browse files

Fix syntax error accessing plan task struct

parent 2c569078
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,7 @@ static struct task_struct * pick_next_task_pb(struct rq *rq,
if (pb->mode != PB_DISABLED_MODE){
// Return current task from plan if plan is enabled
picked = pb->plan_entry[pb->c_entry]->task_struct;
picked = pb->plan[pb->c_entry].task_struct;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment