From 04b59e02ddd651545c89363d9aed3acff381da0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 27 Jan 2005 07:17:01 +0000 Subject: [PATCH] team_id == aspace_id. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11087 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/vm/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/core/vm/vm.c b/src/kernel/core/vm/vm.c index 82b82cebea..9524c5dc31 100755 --- a/src/kernel/core/vm/vm.c +++ b/src/kernel/core/vm/vm.c @@ -2793,7 +2793,7 @@ fill_area_info(struct vm_area *area, area_info *info, size_t size) info->size = area->size; info->protection = area->protection & B_USER_PROTECTION; info->lock = B_FULL_LOCK; - info->team = 1; + info->team = area->aspace->id; info->ram_size = area->size; info->copy_count = 0; info->in_count = 0;