aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJayachandran C. <jchandra@FreeBSD.org>2010-10-06 08:09:39 +0000
committerJayachandran C. <jchandra@FreeBSD.org>2010-10-06 08:09:39 +0000
commita5e14d3c15109393888293faaacf7563eee60612 (patch)
treea4663dff35eab5a80225727ad8e7233de091fe8d
parent916d70039a31a0bf01103726a5a9ac5cbf1f2329 (diff)
downloadsrc-a5e14d3c15109393888293faaacf7563eee60612.tar.gz
src-a5e14d3c15109393888293faaacf7563eee60612.zip
Fix n64 compile.
Notes
Notes: svn path=/head/; revision=213474
-rw-r--r--sys/mips/rmi/fmn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/rmi/fmn.c b/sys/mips/rmi/fmn.c
index 71463a8e3ce4..011d7a1ff95e 100644
--- a/sys/mips/rmi/fmn.c
+++ b/sys/mips/rmi/fmn.c
@@ -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)