aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortimr <timr@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-04-26 07:53:39 +0000
committertimr <timr@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-04-26 07:53:39 +0000
commitfa8a5a1a8d328bdc18ba624f654d96c075fe33c4 (patch)
tree62a466031107769498cb601929443eaf9f9d6eeb
parentcc1075b1753f67fa8369ec50269fb0f9a3d93b75 (diff)
downloadbusybox-w32-fa8a5a1a8d328bdc18ba624f654d96c075fe33c4.tar.gz
busybox-w32-fa8a5a1a8d328bdc18ba624f654d96c075fe33c4.tar.bz2
busybox-w32-fa8a5a1a8d328bdc18ba624f654d96c075fe33c4.zip
add missing void, still has issues though
git-svn-id: svn://busybox.net/trunk/busybox@4665 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--networking/telnet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/telnet.c b/networking/telnet.c
index 93eda56e1..bbf0d1997 100644
--- a/networking/telnet.c
+++ b/networking/telnet.c
@@ -511,7 +511,7 @@ static inline void to_ttype(void)
511#endif 511#endif
512 512
513#ifdef CONFIG_FEATURE_AUTOWIDTH 513#ifdef CONFIG_FEATURE_AUTOWIDTH
514static inline void to_naws() 514static inline void to_naws(void)
515{ 515{
516 /* Tell server we will do NAWS */ 516 /* Tell server we will do NAWS */
517 putiac2(WILL, TELOPT_NAWS); 517 putiac2(WILL, TELOPT_NAWS);