diff options
Diffstat (limited to 'kern/machine.c')
-rw-r--r-- | kern/machine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/machine.c b/kern/machine.c index d5944ce6..52133cb9 100644 --- a/kern/machine.c +++ b/kern/machine.c @@ -361,7 +361,7 @@ processor_t processor; /* * action_thread() shuts down processors or changes their assignment. */ -void action_thread_continue() +void action_thread_continue(void) { processor_t processor; spl_t s; @@ -390,7 +390,7 @@ void action_thread_continue() } } -void __attribute__((noreturn)) action_thread() +void __attribute__((noreturn)) action_thread(void) { action_thread_continue(); /*NOTREACHED*/ |