From 09a2be3b65b627144fd5f107e53f4983cc410429 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 10 Nov 2015 11:10:03 -0600 Subject: [PATCH] core: fix builds with older gcc (like 4.4.x) --- src/NetworkManagerUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NetworkManagerUtils.h b/src/NetworkManagerUtils.h index 2d29b5bb9..fddeb57d8 100644 --- a/src/NetworkManagerUtils.h +++ b/src/NetworkManagerUtils.h @@ -275,7 +275,7 @@ struct _NMUtilsIPv6IfaceId { }; }; -#define NM_UTILS_IPV6_IFACE_ID_INIT { .id = 0 } +#define NM_UTILS_IPV6_IFACE_ID_INIT { { .id = 0 } } gboolean nm_utils_get_ipv6_interface_identifier (NMLinkType link_type, const guint8 *hwaddr,