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:
Daniel Reinhold 2002-10-25 11:08:39 +00:00
parent bd2251961c
commit 4123d76182
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ create_team_struct(const char *name, bool kernel)
p->state = TEAM_STATE_BIRTH;
p->pending_signals = SIG_NONE;
p->death_sem = -1;
p->user_env_base = NULL;
p->user_env_base = 0;
if (arch_team_init_team_struct(p, kernel) < 0)
goto error1;