From: Gunnar Beutner Date: Tue, 12 Dec 2017 10:55:30 +0000 (+0100) Subject: Fix compiler warning introduced by #5753 X-Git-Tag: v2.9.0~299^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d42f81ed119027cf4681f3cb25b354f9f9058908;p=icinga2 Fix compiler warning introduced by #5753 --- diff --git a/lib/remote/endpoint.cpp b/lib/remote/endpoint.cpp index b67ff4736..a24e72133 100644 --- a/lib/remote/endpoint.cpp +++ b/lib/remote/endpoint.cpp @@ -35,7 +35,7 @@ boost::signals2::signal Endpoint::OnDisconnected; Endpoint::Endpoint(void) - : m_MessagesSent(60), m_BytesSent(60), m_MessagesReceived(60), m_BytesReceived(60) + : m_MessagesSent(60), m_MessagesReceived(60), m_BytesSent(60), m_BytesReceived(60) { } void Endpoint::OnAllConfigLoaded(void)