svn commit: r275916 - head/contrib/elftoolchain/elfcopy

Ed Maste emaste at FreeBSD.org
Thu Dec 18 19:10:01 UTC 2014


Author: emaste
Date: Thu Dec 18 19:09:59 2014
New Revision: 275916
URL: https://svnweb.freebsd.org/changeset/base/275916

Log:
  Include section name in strip warning message

Modified:
  head/contrib/elftoolchain/elfcopy/sections.c

Modified: head/contrib/elftoolchain/elfcopy/sections.c
==============================================================================
--- head/contrib/elftoolchain/elfcopy/sections.c	Thu Dec 18 19:02:25 2014	(r275915)
+++ head/contrib/elftoolchain/elfcopy/sections.c	Thu Dec 18 19:09:59 2014	(r275916)
@@ -762,8 +762,8 @@ resync_sections(struct elfcopy *ecp)
 				s->off = roundup(off, s->align);
 		} else {
 			if (s->loadable)
-				warnx("moving loadable section,"
-				    "is this intentional?");
+				warnx("moving loadable section %s, "
+				    "is this intentional?", s->name);
 			s->off = roundup(off, s->align);
 		}
 


More information about the svn-src-head mailing list