svn commit: r293861 - head/cddl/contrib/opensolaris/tools/ctf/cvt

Mark Johnston markj at FreeBSD.org
Thu Jan 14 00:34:39 UTC 2016


Author: markj
Date: Thu Jan 14 00:34:37 2016
New Revision: 293861
URL: https://svnweb.freebsd.org/changeset/base/293861

Log:
  Remove a dead local variable, missed in r274565.
  
  MFC after:	3 days
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c

Modified: head/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c
==============================================================================
--- head/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c	Thu Jan 14 00:31:00 2016	(r293860)
+++ head/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c	Thu Jan 14 00:34:37 2016	(r293861)
@@ -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, e
 		    !equiv_node(ml1->ml_type, ml2->ml_type, ed))
 			return (0);
 
-		olm1 = ml1;
 		ml1 = ml1->ml_next;
 		ml2 = ml2->ml_next;
 	}


More information about the svn-src-all mailing list