Fix n64 compile.

This commit is contained in:
jchandra 2010-10-06 08:09:39 +00:00
parent 030e361d63
commit 1ab6acb7b6

View File

@ -397,7 +397,7 @@ create_msgring_thread(int hwtid)
mtx_init(&mthd->lock, "msgrngcore", NULL, MTX_SPIN);
mthd->running = mthd->nthreads = 0;
}
error = kproc_kthread_add(msgring_process, (void *)hwtid,
error = kproc_kthread_add(msgring_process, (void *)(uintptr_t)hwtid,
&msgring_proc, &td, RFSTOPPED, 2, "msgrngproc",
"msgthr%d", hwtid);
if (error)