diff options
author | Denys Vlasenko | 2011-01-16 01:25:34 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-01-16 01:25:34 +0100 |
commit | df1689138e71fa3648209db28146a595c4e63c26 (patch) | |
tree | 173da57b164e8ecdc9cf80da41a73443dd7a6c97 /networking | |
parent | 068444629fbcf59dd8165a63885f8e69fd5cb474 (diff) | |
download | busybox-df1689138e71fa3648209db28146a595c4e63c26.zip busybox-df1689138e71fa3648209db28146a595c4e63c26.tar.gz |
remove a few aliasing warnings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/dhcprelay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcprelay.c b/networking/udhcp/dhcprelay.c index 759a4ba..86ef04a 100644 --- a/networking/udhcp/dhcprelay.c +++ b/networking/udhcp/dhcprelay.c @@ -25,7 +25,7 @@ struct xid_item { uint32_t xid; struct sockaddr_in ip; struct xid_item *next; -}; +} FIX_ALIASING; #define dhcprelay_xid_list (*(struct xid_item*)&bb_common_bufsiz1) |