mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-01 08:27:59 +00:00
Remove a dead local variable, missed in r274565.
MFC after: 3 days Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
50d901977a
commit
807b6a646a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=293861
@ -283,7 +283,6 @@ static int
|
||||
equiv_su(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed)
|
||||
{
|
||||
mlist_t *ml1 = stdp->t_members, *ml2 = ttdp->t_members;
|
||||
mlist_t *olm1 = NULL;
|
||||
|
||||
while (ml1 && ml2) {
|
||||
if (ml1->ml_offset != ml2->ml_offset ||
|
||||
@ -292,7 +291,6 @@ equiv_su(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed)
|
||||
!equiv_node(ml1->ml_type, ml2->ml_type, ed))
|
||||
return (0);
|
||||
|
||||
olm1 = ml1;
|
||||
ml1 = ml1->ml_next;
|
||||
ml2 = ml2->ml_next;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user