fix gcc4 build

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22080 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2007-08-26 21:34:43 +00:00
parent fc002ebb35
commit 61b50eed27
1 changed files with 1 additions and 1 deletions

View File

@ -1921,7 +1921,7 @@ fill_thread_info(struct thread *thread, thread_info *info, size_t size)
else
info->state = B_THREAD_WAITING;
} else
info->state = (enum thread_state)thread->state;
info->state = (thread_state)thread->state;
info->priority = thread->priority;
info->sem = thread->sem.blocking;