1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Remove bogus duplicate assignment of local variables.

This commit is contained in:
Juli Mallett 2002-10-05 04:35:59 +00:00
parent 6d4d944e33
commit ecafb24b41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104502
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;