From: Martin Lewis Date: Sun, 26 May 2019 12:22:44 +0000 (+0200) Subject: udhcpc6: Fixed aliasing compilation error X-Git-Tag: 1_31_0~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=818d9e02f2de87aef3ba72c2b3bcec6eed4ef974;p=oweals%2Fbusybox.git udhcpc6: Fixed aliasing compilation error Signed-off-by: Martin Lewis Signed-off-by: Denys Vlasenko --- diff --git a/networking/udhcp/d6_common.h b/networking/udhcp/d6_common.h index 2178cb9d6..dee2558e2 100644 --- a/networking/udhcp/d6_common.h +++ b/networking/udhcp/d6_common.h @@ -141,7 +141,7 @@ struct client6_data_t { unsigned env_idx; /* link-local IPv6 address */ struct in6_addr ll_ip6; -}; +} FIX_ALIASING; #define client6_data (*(struct client6_data_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE - sizeof(struct client6_data_t)]))