david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

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
1 changed files with 1 additions and 4 deletions

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 */