diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-16 22:32:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-16 22:32:04 +0000 |
commit | ac678ec2f127fc02a93fff2c164e0b13a94a6abf (patch) | |
tree | f1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /procps | |
parent | 17e3c34aa7abe42aa604234235338e2b8087b8a0 (diff) |
style fixes, no code changes
Diffstat (limited to 'procps')
-rw-r--r-- | procps/top.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/procps/top.c b/procps/top.c index ee6ee5d5c..7d30936a8 100644 --- a/procps/top.c +++ b/procps/top.c @@ -103,7 +103,8 @@ static int time_sort(top_status_t *P, top_status_t *Q) return Q->ticks != P->ticks; /* 0 if ==, 1 if > */ } -static int mult_lvl_cmp(void* a, void* b) { +static int mult_lvl_cmp(void* a, void* b) +{ int i, cmp_val; for (i = 0; i < SORT_DEPTH; i++) { |