From 807b6a646a0a0dbc258bf239468b5d9f901d1f92 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Thu, 14 Jan 2016 00:34:37 +0000 Subject: Remove a dead local variable, missed in r274565. MFC after: 3 days Sponsored by: EMC / Isilon Storage Division --- cddl/contrib/opensolaris/tools/ctf/cvt/merge.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'cddl/contrib/opensolaris/tools') diff --git a/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c b/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c index d366f3182731..5b22a31140d7 100644 --- a/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c +++ b/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c @@ -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; } -- cgit v1.2.3