From 41102775da8a8a1223518ce45d2e324eb5d2710f Mon Sep 17 00:00:00 2001 From: mbonadei Date: Wed, 3 May 2017 11:31:38 -0700 Subject: [PATCH] fixing braces around initialization of subobject BUG=chromium:717832 NOTRY=True Review-Url: https://codereview.webrtc.org/2861533005 Cr-Commit-Position: refs/heads/master@{#18001} --- webrtc/base/virtualsocketserver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/base/virtualsocketserver.cc b/webrtc/base/virtualsocketserver.cc index 57f218e91b..1e9c5bbe24 100644 --- a/webrtc/base/virtualsocketserver.cc +++ b/webrtc/base/virtualsocketserver.cc @@ -27,7 +27,7 @@ namespace rtc { #if defined(WEBRTC_WIN) -const in_addr kInitialNextIPv4 = { {0x01, 0, 0, 0} }; +const in_addr kInitialNextIPv4 = { { { 0x01, 0, 0, 0 } } }; #else // This value is entirely arbitrary, hence the lack of concern about endianness. const in_addr kInitialNextIPv4 = { 0x01000000 };