From be905d550c96da8c75d697842ba4169a62d05190 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 27 Sep 2006 14:17:31 +0000 Subject: process utilities related style cleanup --- libbb/find_pid_by_name.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'libbb/find_pid_by_name.c') diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c index 5520220b3..247d79f9f 100644 --- a/libbb/find_pid_by_name.c +++ b/libbb/find_pid_by_name.c @@ -23,18 +23,17 @@ * Returns a list of all matching PIDs * It is the caller's duty to free the returned pidlist. */ -long* find_pid_by_name( const char* pidName) +long* find_pid_by_name(const char* pidName) { long* pidList; - int i=0; - procps_status_t * p; + int i = 0; + procps_status_t* p; pidList = xmalloc(sizeof(long)); - while ((p = procps_scan(0)) != 0) - { + while ((p = procps_scan(0)) != 0) { if (strncmp(p->short_cmd, pidName, COMM_LEN-1) == 0) { - pidList=xrealloc( pidList, sizeof(long) * (i+2)); - pidList[i++]=p->pid; + pidList = xrealloc( pidList, sizeof(long) * (i+2)); + pidList[i++] = p->pid; } } @@ -44,9 +43,9 @@ long* find_pid_by_name( const char* pidName) long *pidlist_reverse(long *pidList) { - int i=0; + int i = 0; while (pidList[i] > 0 && ++i); - if ( i-- > 0) { + if (i-- > 0) { long k; int j; for (j = 0; i > j; i--, j++) { -- cgit v1.2.3