svn commit: r257235 - head/lib/libproc

Mark Johnston markj at FreeBSD.org
Mon Oct 28 01:42:00 UTC 2013


Author: markj
Date: Mon Oct 28 01:41:59 2013
New Revision: 257235
URL: http://svnweb.freebsd.org/changeset/base/257235

Log:
  Remove an incorrect debug printf.

Modified:
  head/lib/libproc/proc_sym.c

Modified: head/lib/libproc/proc_sym.c
==============================================================================
--- head/lib/libproc/proc_sym.c	Mon Oct 28 00:20:30 2013	(r257234)
+++ head/lib/libproc/proc_sym.c	Mon Oct 28 01:41:59 2013	(r257235)
@@ -460,7 +460,6 @@ proc_name2sym(struct proc_handle *p, con
 	 * Then look up the string name in STRTAB (.dynstr)
 	 */
 	if ((data = elf_getdata(dynsymscn, NULL))) {
-		DPRINTFX("ERROR: elf_getdata() failed: %s", elf_errmsg(-1));
 		i = 0;
 		while (gelf_getsym(data, i++, &sym) != NULL) {
 			s = elf_strptr(e, dynsymstridx, sym.st_name);


More information about the svn-src-head mailing list