Remove an incorrect and useless debug print.

X-MFC-With:	r272488
This commit is contained in:
Mark Johnston 2014-10-04 02:34:30 +00:00
parent 41da933c87
commit ec04549052

View File

@ -504,10 +504,8 @@ proc_name2ctf(struct proc_handle *p, const char *name)
prmap_t *map;
int error;
if ((map = proc_name2map(p, name)) == NULL) {
DPRINTFX("ERROR: couldn't find object %s", object);
if ((map = proc_name2map(p, name)) == NULL)
return (NULL);
}
return (ctf_open(map->pr_mapname, &error));
#else