2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-18 21:43:14 +00:00

fix gcc 4.2.1 warning: initialized field overwritten

This commit is contained in:
Holger Lubitz 2007-07-31 18:42:36 +02:00 committed by Michael Brown
parent 91a8ae1216
commit fdd5fbe3ae

View File

@ -19,10 +19,7 @@ struct net_protocol ipv6_protocol;
/* Unspecified IP6 address */
static struct in6_addr ip6_none = {
.in6_u.u6_addr32[0] = 0,
.in6_u.u6_addr32[1] = 0,
.in6_u.u6_addr32[2] = 0,
.in6_u.u6_addr32[3] = 0,
.in6_u.u6_addr32 = { 0,0,0,0 }
};
/** An IPv6 routing table entry */