- commentary typo fix

This commit is contained in:
Bernhard Reutner-Fischer 2008-09-05 11:46:43 +00:00
parent 665eaff3b1
commit 4acb1b0793

View File

@ -88,7 +88,7 @@ pid_t* FAST_FUNC find_pid_by_name(const char *procName)
if (comm_match(p, procName)
/* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/
|| (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0)
/* TOOD: we can also try /proc/NUM/exe link, do we want that? */
/* TODO: we can also try /proc/NUM/exe link, do we want that? */
) {
pidList = xrealloc_vector(pidList, 2, i);
pidList[i++] = p->pid;