diff options
Diffstat (limited to 'sys/kern/kern_thread.c')
-rw-r--r-- | sys/kern/kern_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index 1b133a1..2f6ccc5 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -915,8 +915,8 @@ thread_single(int force_exit) int thread_suspend_check(int return_instead) { - struct thread *td = curthread; - struct proc *p = td->td_proc; + struct thread *td; + struct proc *p; td = curthread; p = td->td_proc; |