Fix n64 compile.

This commit is contained in:
Jayachandran C. 2010-10-06 08:09:39 +00:00
parent 916d70039a
commit a5e14d3c15
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213474

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)