Skip to content

Commit

Permalink
fix minor error
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Nyberg <jens.nyberg@gmail.com>
  • Loading branch information
jezze committed Oct 4, 2018
1 parent 27c7aba commit bd75fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void kernel_setupinit(struct task *task)
root->id = root->protocol->root(root->backend, &root->state);
work->backend = root->backend;
work->protocol = root->protocol;
work->id = root->id;
work->id = work->protocol->root(work->backend, &work->state);
init->backend = root->backend;
init->protocol = root->protocol;
init->id = init->protocol->root(init->backend, &init->state);
Expand Down

0 comments on commit bd75fa9

Please sign in to comment.