aboutsummaryrefslogtreecommitdiff
path: root/libbb/find_pid_by_name.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/find_pid_by_name.c')
-rw-r--r--libbb/find_pid_by_name.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c
index 8dcdb13bc..ae2f11643 100644
--- a/libbb/find_pid_by_name.c
+++ b/libbb/find_pid_by_name.c
@@ -48,7 +48,7 @@ and therefore comm field contains "exe".
48 * Returns a list of all matching PIDs 48 * Returns a list of all matching PIDs
49 * It is the caller's duty to free the returned pidlist. 49 * It is the caller's duty to free the returned pidlist.
50 */ 50 */
51pid_t* find_pid_by_name(const char* procName) 51pid_t* FAST_FUNC find_pid_by_name(const char* procName)
52{ 52{
53 pid_t* pidList; 53 pid_t* pidList;
54 int i = 0; 54 int i = 0;
@@ -74,7 +74,7 @@ pid_t* find_pid_by_name(const char* procName)
74 return pidList; 74 return pidList;
75} 75}
76 76
77pid_t *pidlist_reverse(pid_t *pidList) 77pid_t* FAST_FUNC pidlist_reverse(pid_t *pidList)
78{ 78{
79 int i = 0; 79 int i = 0;
80 while (pidList[i]) 80 while (pidList[i])