Commit 5cfd96c4 authored by Andrew Vagin's avatar Andrew Vagin Committed by Pavel Emelyanov

restore: add missing break-s

Signed-off-by: 's avatarAndrew Vagin <avagin@virtuozzo.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent b3283a69
......@@ -1019,11 +1019,13 @@ static int wait_on_helpers_zombies(void)
pr_perror("Wait on %d zombie failed\n", pid);
return -1;
}
break;
case TASK_HELPER:
if (waitpid(pid, &status, 0) != pid) {
pr_perror("waitpid for helper %d failed", pid);
return -1;
}
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment