From 45894e10883777d147fc5cf698a71bdf66a34045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 10 Oct 2006 22:39:57 +0000 Subject: [PATCH] Minor cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19039 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/team.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/system/kernel/team.c b/src/system/kernel/team.c index 5a107c909d..c6f3bb96b0 100644 --- a/src/system/kernel/team.c +++ b/src/system/kernel/team.c @@ -1154,8 +1154,8 @@ fork_team(void) cookie = 0; while (get_next_area_info(B_CURRENT_TEAM, &cookie, &info) == B_OK) { void *address; - area_id area = vm_copy_area(team->address_space->id, info.name, &address, B_CLONE_ADDRESS, - info.protection, info.area); + area_id area = vm_copy_area(team->address_space->id, info.name, + &address, B_CLONE_ADDRESS, info.protection, info.area); if (area < B_OK) { status = area; break; @@ -1177,8 +1177,9 @@ fork_team(void) // ToDo: copy image list // create a kernel thread under the context of the new team - threadID = spawn_kernel_thread_etc(fork_team_thread_start, parentThread->name, - parentThread->priority, forkArgs, team->id, team->id); + threadID = spawn_kernel_thread_etc(fork_team_thread_start, + parentThread->name, parentThread->priority, forkArgs, + team->id, team->id); if (threadID < 0) { status = threadID; goto err4;