diff options
author | markj <markj@FreeBSD.org> | 2013-10-28 01:41:59 +0000 |
---|---|---|
committer | markj <markj@FreeBSD.org> | 2013-10-28 01:41:59 +0000 |
commit | 64b3e71588690565509558d3e46f67ffbb8c9764 (patch) | |
tree | b1a2c2252daf680b88788861c406aa2a0fedba67 /lib/libproc | |
parent | 9d47b50d92445672792cc8dc29606dcbc21d04c8 (diff) | |
download | FreeBSD-src-64b3e71588690565509558d3e46f67ffbb8c9764.zip FreeBSD-src-64b3e71588690565509558d3e46f67ffbb8c9764.tar.gz |
Remove an incorrect debug printf.
Diffstat (limited to 'lib/libproc')
-rw-r--r-- | lib/libproc/proc_sym.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libproc/proc_sym.c b/lib/libproc/proc_sym.c index e9f79ea..4f3d83b 100644 --- a/lib/libproc/proc_sym.c +++ b/lib/libproc/proc_sym.c @@ -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); |