From 279f949ee5d1e252d2fcded5c0e4d5caee6c4c03 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 3 Jul 2004 16:57:51 +0000 Subject: [PATCH] Add NULL arg to mi_switch() call to stop kernel compiles from breaking. --- sys/kern/sched_ule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c index 889037d37d9..7eb82186fc3 100644 --- a/sys/kern/sched_ule.c +++ b/sys/kern/sched_ule.c @@ -1716,7 +1716,7 @@ sched_bind(struct thread *td, int cpu) kseq_load_rem(KSEQ_CPU(ke->ke_cpu), ke); kseq_notify(ke, cpu); /* When we return from mi_switch we'll be on the correct cpu. */ - mi_switch(SW_VOL); + mi_switch(SW_VOL, NULL); #endif }