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:
parent
6d4d944e33
commit
ecafb24b41
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104502
@ -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