1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

Remove an incorrect debug printf.

This commit is contained in:
Mark Johnston 2013-10-28 01:41:59 +00:00
parent 7aa2b6928f
commit 7a514b6277
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257235

View File

@ -460,7 +460,6 @@ proc_name2sym(struct proc_handle *p, const char *object, const char *symbol,
* 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);