svn commit: r343611 - head/usr.bin/elfdump

Ed Maste emaste at FreeBSD.org
Thu Jan 31 16:21:10 UTC 2019


Author: emaste
Date: Thu Jan 31 16:21:09 2019
New Revision: 343611
URL: https://svnweb.freebsd.org/changeset/base/343611

Log:
  elfdump: fix build after r343610
  
  One patch hunk did not survive the trip from git to svn.
  
  PR:		228290
  MFC with:	r343610

Modified:
  head/usr.bin/elfdump/elfdump.c

Modified: head/usr.bin/elfdump/elfdump.c
==============================================================================
--- head/usr.bin/elfdump/elfdump.c	Thu Jan 31 16:19:04 2019	(r343610)
+++ head/usr.bin/elfdump/elfdump.c	Thu Jan 31 16:21:09 2019	(r343611)
@@ -1066,7 +1066,9 @@ elf_print_note(Elf32_Ehdr *e, void *sh)
 	u_int32_t namesz;
 	u_int32_t descsz;
 	u_int32_t desc;
+	u_int32_t type;
 	char *n, *s;
+	const char *nt_type;
 
 	offset = elf_get_off(e, sh, SH_OFFSET);
 	size = elf_get_size(e, sh, SH_SIZE);


More information about the svn-src-all mailing list