diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 22:28:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 22:28:26 +0000 |
commit | 5599502a550a7f892d4b73dceb2105a6916f83e6 (patch) | |
tree | 572ffa27892b1b24db86930044077dbb1565840f /procps/top.c | |
parent | e125a683a77d14401644d15f38b7f578db723924 (diff) | |
download | busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.tar.gz busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.tar.bz2 busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.zip |
more -Wall warning fixes. -Wall is enabled now.
Diffstat (limited to 'procps/top.c')
-rw-r--r-- | procps/top.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/procps/top.c b/procps/top.c index ca43376ac..ed74879d1 100644 --- a/procps/top.c +++ b/procps/top.c | |||
@@ -742,9 +742,10 @@ enum { | |||
742 | int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 742 | int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
743 | int top_main(int argc ATTRIBUTE_UNUSED, char **argv) | 743 | int top_main(int argc ATTRIBUTE_UNUSED, char **argv) |
744 | { | 744 | { |
745 | int count, lines, col; | 745 | int count; |
746 | unsigned interval; | ||
747 | int iterations; | 746 | int iterations; |
747 | unsigned lines, col; | ||
748 | unsigned interval; | ||
748 | char *sinterval; | 749 | char *sinterval; |
749 | SKIP_FEATURE_TOPMEM(const) unsigned scan_mask = TOP_MASK; | 750 | SKIP_FEATURE_TOPMEM(const) unsigned scan_mask = TOP_MASK; |
750 | #if ENABLE_FEATURE_USE_TERMIOS | 751 | #if ENABLE_FEATURE_USE_TERMIOS |