Fix warning in syscalls.c

This commit is contained in:
Kevin Lange 2013-03-21 00:03:05 -07:00
parent ef459bdaad
commit afd0c59de1

View File

@ -131,7 +131,7 @@ static int wait(int child) {
process_t * volatile child_task;
if (child == 0) {
debug_print_process_tree();
child_task = process_get_first_child(current_process);
child_task = process_get_first_child((process_t *)current_process);
} else if (child < 1) {
debug_print(WARNING, "Process %d requested group wait, which we can not do!", getpid());
return 0;