diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-13 17:17:34 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-13 17:17:34 +0200 |
commit | 7b85ec30b5941f0b90c48a990f2f6840aca87bce (patch) | |
tree | 3565032bf3f34eeea195258d9d4edc9f01480e6e /miscutils/hdparm.c | |
parent | 4d0c1ea4784c9844f8468d97ca5c26d3c70f9921 (diff) | |
download | busybox-w32-7b85ec30b5941f0b90c48a990f2f6840aca87bce.tar.gz busybox-w32-7b85ec30b5941f0b90c48a990f2f6840aca87bce.tar.bz2 busybox-w32-7b85ec30b5941f0b90c48a990f2f6840aca87bce.zip |
*: more BUILD_BUG_ON conversions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r-- | miscutils/hdparm.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 9c486e7aa..8e201ac35 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c | |||
@@ -368,9 +368,6 @@ struct globals { | |||
368 | #endif | 368 | #endif |
369 | } FIX_ALIASING; | 369 | } FIX_ALIASING; |
370 | #define G (*(struct globals*)&bb_common_bufsiz1) | 370 | #define G (*(struct globals*)&bb_common_bufsiz1) |
371 | struct BUG_G_too_big { | ||
372 | char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1]; | ||
373 | }; | ||
374 | #define get_identity (G.get_identity ) | 371 | #define get_identity (G.get_identity ) |
375 | #define get_geom (G.get_geom ) | 372 | #define get_geom (G.get_geom ) |
376 | #define do_flush (G.do_flush ) | 373 | #define do_flush (G.do_flush ) |
@@ -433,7 +430,9 @@ struct BUG_G_too_big { | |||
433 | #define hwif_data (G.hwif_data ) | 430 | #define hwif_data (G.hwif_data ) |
434 | #define hwif_ctrl (G.hwif_ctrl ) | 431 | #define hwif_ctrl (G.hwif_ctrl ) |
435 | #define hwif_irq (G.hwif_irq ) | 432 | #define hwif_irq (G.hwif_irq ) |
436 | #define INIT_G() do { } while (0) | 433 | #define INIT_G() do { \ |
434 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ | ||
435 | } while (0) | ||
437 | 436 | ||
438 | 437 | ||
439 | /* Busybox messages and functions */ | 438 | /* Busybox messages and functions */ |