Remove bogus duplicate assignment of local variables.
This commit is contained in:
parent
4ba8c4b854
commit
c5409b09a6
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user