Minor change: corrected the debug output in wait_for_thread().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4893 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-10-01 01:38:00 +00:00
parent 2f72291d1b
commit 20b82fcf5b
+1 -1
View File
@@ -1465,7 +1465,7 @@ wait_for_thread(thread_id id, status_t *_returnCode)
if (_returnCode) {
t = thread_get_current_thread();
dprintf("thread_wait_on_thread: thread %ld got return code 0x%x\n",
dprintf("wait_for_thread: thread %ld got return code 0x%x\n",
t->id, t->sem_deleted_retcode);
*_returnCode = t->sem_deleted_retcode;
}