From 7a514b6277eb1446cc1344c4b340472d409f4717 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Mon, 28 Oct 2013 01:41:59 +0000 Subject: [PATCH] Remove an incorrect debug printf. --- lib/libproc/proc_sym.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/libproc/proc_sym.c b/lib/libproc/proc_sym.c index e9f79eadd1ca..4f3d83b15e78 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);