bug fix: addr is an unsigned long, not a pointer type
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1645 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
bd2251961c
commit
4123d76182
@ -378,7 +378,7 @@ create_team_struct(const char *name, bool kernel)
|
|||||||
p->state = TEAM_STATE_BIRTH;
|
p->state = TEAM_STATE_BIRTH;
|
||||||
p->pending_signals = SIG_NONE;
|
p->pending_signals = SIG_NONE;
|
||||||
p->death_sem = -1;
|
p->death_sem = -1;
|
||||||
p->user_env_base = NULL;
|
p->user_env_base = 0;
|
||||||
|
|
||||||
if (arch_team_init_team_struct(p, kernel) < 0)
|
if (arch_team_init_team_struct(p, kernel) < 0)
|
||||||
goto error1;
|
goto error1;
|
||||||
|
Loading…
Reference in New Issue
Block a user