diff options
author | Denys Vlasenko | 2015-10-13 14:50:20 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-10-13 14:50:20 +0200 |
commit | ab3964db4e75e34f6f9347406c5fd2bced04f2dd (patch) | |
tree | 92113e4a008338ed8534858db97d3a5e09dc210b /networking/tftp.c | |
parent | f7ad927c2059ef9cd1cd6befeb43f26b92f6369f (diff) | |
download | busybox-ab3964db4e75e34f6f9347406c5fd2bced04f2dd.zip busybox-ab3964db4e75e34f6f9347406c5fd2bced04f2dd.tar.gz |
libbb: introduce kernel-style BUILD_BUG_ON()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tftp.c')
-rw-r--r-- | networking/tftp.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index 8ecd7bb..ad9308e 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -129,10 +129,9 @@ struct globals { #endif } FIX_ALIASING; #define G (*(struct globals*)&bb_common_bufsiz1) -struct BUG_G_too_big { - char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1]; -}; -#define INIT_G() do { } while (0) +#define INIT_G() do { \ + BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ +} while (0) #define G_error_pkt_reason (G.error_pkt[3]) #define G_error_pkt_str ((char*)(G.error_pkt + 4)) |