]> granicus.if.org Git - icinga2/commitdiff
Fix compiler warning introduced by #5753 5846/head
authorGunnar Beutner <gunnar.beutner@netways.de>
Tue, 12 Dec 2017 10:55:30 +0000 (11:55 +0100)
committerGunnar Beutner <gunnar.beutner@netways.de>
Tue, 12 Dec 2017 10:55:30 +0000 (11:55 +0100)
lib/remote/endpoint.cpp

index b67ff4736b1034aa118a459ee6c68c99697695bb..a24e7213381db12daed11b51838cd4435f035e21 100644 (file)
@@ -35,7 +35,7 @@ boost::signals2::signal<void(const Endpoint::Ptr&, const JsonRpcConnection::Ptr&
 boost::signals2::signal<void(const Endpoint::Ptr&, const JsonRpcConnection::Ptr&)> 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)