diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-03 22:30:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-03 22:30:22 +0000 |
commit | 4e5f82c76f08614d0b69f9ec4a8baac303af15f6 (patch) | |
tree | 5eb42f026a1fb90ae72b27b7a9b700cd5fee3ab9 /networking | |
parent | dd6e1f0deb6c0423b803137ca650cd85eaa570b3 (diff) | |
download | busybox-w32-4e5f82c76f08614d0b69f9ec4a8baac303af15f6.tar.gz busybox-w32-4e5f82c76f08614d0b69f9ec4a8baac303af15f6.tar.bz2 busybox-w32-4e5f82c76f08614d0b69f9ec4a8baac303af15f6.zip |
find_stray_communal_vars: script which finds communal variables
resize: remove globals var
mdev: remove globals var
Diffstat (limited to 'networking')
-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 a59450505..caca89d2d 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -79,7 +79,7 @@ struct globals { | |||
79 | struct termios termios_raw; | 79 | struct termios termios_raw; |
80 | }; | 80 | }; |
81 | 81 | ||
82 | #define G (*(struct globals*)bb_common_bufsiz1) | 82 | #define G (*(struct globals*)&bb_common_bufsiz1) |
83 | 83 | ||
84 | 84 | ||
85 | /* Function prototypes */ | 85 | /* Function prototypes */ |