diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-20 20:44:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-20 20:44:08 +0000 |
commit | 54b90b598858297186582ab89ac98ecc918afa92 (patch) | |
tree | 52d7c95ea52300299c1c802e93970123e9d21c1d | |
parent | 38100a4ebe45ccf55a4f7e7f777dfea43f8bc7c4 (diff) |
fix another -Wall warning
-rw-r--r-- | procps/ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/ps.c b/procps/ps.c index cf939bbb8..1ab3973e7 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -493,7 +493,7 @@ int ps_main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) #if !ENABLE_FEATURE_PS_WIDE enum { terminal_width = 79 }; #else - int terminal_width; + unsigned terminal_width; int w_count = 0; #endif |