Remove unused (besides being initialized) variable.

This commit is contained in:
Peter Wemm 2005-05-05 18:19:53 +00:00
parent 6b4c9eb44a
commit fa37873521
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145911

View File

@ -1374,7 +1374,6 @@ ptrace_clear_single_step(struct thread *td)
int
fill_regs(struct thread *td, struct reg *regs)
{
struct pcb *pcb;
struct trapframe *tp;
tp = td->td_frame;
@ -1398,7 +1397,6 @@ fill_regs(struct thread *td, struct reg *regs)
regs->r_rflags = tp->tf_rflags;
regs->r_rsp = tp->tf_rsp;
regs->r_ss = tp->tf_ss;
pcb = td->td_pcb;
return (0);
}