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 /networking/telnet.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 'networking/telnet.c')
-rw-r--r-- | networking/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 78229cd01..32e9993d3 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -68,7 +68,7 @@ struct globals { | |||
68 | const char *autologin; | 68 | const char *autologin; |
69 | #endif | 69 | #endif |
70 | #if ENABLE_FEATURE_AUTOWIDTH | 70 | #if ENABLE_FEATURE_AUTOWIDTH |
71 | int win_width, win_height; | 71 | unsigned win_width, win_height; |
72 | #endif | 72 | #endif |
73 | /* same buffer used both for network and console read/write */ | 73 | /* same buffer used both for network and console read/write */ |
74 | char buf[DATABUFSIZE]; | 74 | char buf[DATABUFSIZE]; |