From abeab8c454bcc24224bdda73a39102aa0a5c0ca0 Mon Sep 17 00:00:00 2001 From: phk 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 889037d37d9a..7eb82186fc3f 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 }