diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-01-09 13:12:58 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-01-09 13:12:58 +0100 |
commit | 841912311252c861d34f5356cb32acc95f008b0f (patch) | |
tree | 51de541727c1a67bdd38dfd3336b57b37d7abbaa | |
parent | ecf02e8b83056b2ac36d9e09c0a8c9bff8bfecd1 (diff) | |
download | busybox-w32-841912311252c861d34f5356cb32acc95f008b0f.tar.gz busybox-w32-841912311252c861d34f5356cb32acc95f008b0f.tar.bz2 busybox-w32-841912311252c861d34f5356cb32acc95f008b0f.zip |
telnet: placate compiler's warning
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 94c7512fc..fa1628723 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -248,7 +248,7 @@ static void handle_net_input(int len) | |||
248 | { | 248 | { |
249 | byte c; | 249 | byte c; |
250 | int i; | 250 | int i; |
251 | int cstart; | 251 | int cstart = cstart; /* for compiler */ |
252 | 252 | ||
253 | i = 0; | 253 | i = 0; |
254 | //bb_error_msg("[%u,'%.*s']", G.telstate, len, G.buf); | 254 | //bb_error_msg("[%u,'%.*s']", G.telstate, len, G.buf); |