Remove an incorrect and useless debug print.

X-MFC-With:	r272488
This commit is contained in:
markj 2014-10-04 02:34:30 +00:00
parent 91d5d12d67
commit ddd2a908f3

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