Date: Mon, 28 Oct 2013 01:42:00 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257235 - head/lib/libproc Message-ID: <201310280142.r9S1g0C7027209@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310280142.r9S1g0C7027209>