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}
This commit is contained in:
mbonadei
2017-05-03 11:31:38 -07:00
committed by Commit bot
parent bbe2a370f7
commit 41102775da

View File

@ -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 };