diff options
author | Denys Vlasenko | 2010-02-04 18:41:18 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-02-04 18:41:18 +0100 |
commit | 12ca080a1ca8dfd0aeac54485451b906a7e61b16 (patch) | |
tree | abb273fb03a73bc9c20d05f9128bdfd9bfe55e55 /util-linux/mkswap.c | |
parent | 98a4c7cf3d799ab953cb77e8b34597c73e3e7335 (diff) | |
download | busybox-12ca080a1ca8dfd0aeac54485451b906a7e61b16.zip busybox-12ca080a1ca8dfd0aeac54485451b906a7e61b16.tar.gz |
*: eliminate more aliasing warnings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mkswap.c')
-rw-r--r-- | util-linux/mkswap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mkswap.c b/util-linux/mkswap.c index 949c71a..7e32d91 100644 --- a/util-linux/mkswap.c +++ b/util-linux/mkswap.c @@ -65,7 +65,7 @@ struct swap_header_v1 { uint32_t padding[117]; /* 11..127 */ uint32_t badpages[1]; /* 128 */ /* total 129 32-bit words in 2nd kilobyte */ -}; +} FIX_ALIASING; #define NWORDS 129 #define hdr ((struct swap_header_v1*)bb_common_bufsiz1) |