diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-05 14:40:23 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-05 14:40:23 +0100 |
commit | 36659fda1f05e735839b22d9e8892731fb46d7b0 (patch) | |
tree | d4e24cbd45d18ea1aa58cbb0d76aa9a69869db00 /networking/libiproute | |
parent | 12ca080a1ca8dfd0aeac54485451b906a7e61b16 (diff) | |
download | busybox-36659fda1f05e735839b22d9e8892731fb46d7b0.tar.gz |
*: fix 1/4 remaining aliasing warnings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute')
-rw-r--r-- | networking/libiproute/ipaddress.c | 5 | ||||
-rw-r--r-- | networking/libiproute/iproute.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index f2e340a42..af29dd301 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c @@ -23,7 +23,7 @@ #define IFF_LOWER_UP 0x10000 /* driver signals L1 up*/ #endif -typedef struct filter_t { +struct filter_t { char *label; char *flushb; struct rtnl_handle *rth; @@ -38,7 +38,8 @@ typedef struct filter_t { smallint up; smallint flushed; inet_prefix pfx; -} filter_t; +} FIX_ALIASING; +typedef struct filter_t filter_t; #define G_filter (*(filter_t*)&bb_common_bufsiz1) diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c index 520cc820a..68e3c36a0 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c @@ -22,7 +22,7 @@ #endif -typedef struct filter_t { +struct filter_t { int tb; smallint flushed; char *flushb; @@ -43,7 +43,8 @@ typedef struct filter_t { inet_prefix mdst; inet_prefix rsrc; inet_prefix msrc; -} filter_t; +} FIX_ALIASING; +typedef struct filter_t filter_t; #define G_filter (*(filter_t*)&bb_common_bufsiz1) |