------- Comment #1 from tbm at cyrius dot com 2007-12-14 20:04 ------- /* Testcase by Martin Michlmayr <[EMAIL PROTECTED]> */
typedef struct host_addr { union { char ipv6[2]; } addr; } host_addr_t; static const host_addr_t ipv4_unspecified = { { 0, 0 } }; void socket_addr_set (const host_addr_t addr) { socket_addr_set (ipv4_unspecified); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34467