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 /archival | |
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 'archival')
-rw-r--r-- | archival/libarchive/decompress_gunzip.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/archival/libarchive/decompress_gunzip.c b/archival/libarchive/decompress_gunzip.c index 1360abef7..7b6f45934 100644 --- a/archival/libarchive/decompress_gunzip.c +++ b/archival/libarchive/decompress_gunzip.c | |||
@@ -1118,9 +1118,8 @@ static int check_header_gzip(STATE_PARAM transformer_state_t *xstate) | |||
1118 | uint8_t os_flags_UNUSED; | 1118 | uint8_t os_flags_UNUSED; |
1119 | } PACKED formatted; | 1119 | } PACKED formatted; |
1120 | } header; | 1120 | } header; |
1121 | struct BUG_header { | 1121 | |
1122 | char BUG_header[sizeof(header) == 8 ? 1 : -1]; | 1122 | BUILD_BUG_ON(sizeof(header) != 8); |
1123 | }; | ||
1124 | 1123 | ||
1125 | /* | 1124 | /* |
1126 | * Rewind bytebuffer. We use the beginning because the header has 8 | 1125 | * Rewind bytebuffer. We use the beginning because the header has 8 |