Remove bogus duplicate assignment of local variables.

This commit is contained in:
jmallett 2002-10-05 04:35:59 +00:00
parent 4ba8c4b854
commit c5409b09a6
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;