diff options
Diffstat (limited to 'networking/telnet.c')
-rw-r--r-- | networking/telnet.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 3bb6fb1ba..944cf1bd6 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -110,9 +110,7 @@ struct globals { | |||
110 | } FIX_ALIASING; | 110 | } FIX_ALIASING; |
111 | #define G (*(struct globals*)&bb_common_bufsiz1) | 111 | #define G (*(struct globals*)&bb_common_bufsiz1) |
112 | #define INIT_G() do { \ | 112 | #define INIT_G() do { \ |
113 | struct G_sizecheck { \ | 113 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ |
114 | char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \ | ||
115 | }; \ | ||
116 | } while (0) | 114 | } while (0) |
117 | 115 | ||
118 | 116 | ||