From 5028779528f677a4d4360000f4a97615171cf814 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 22 Nov 2016 20:53:14 +0100 Subject: [PATCH] fix(network): Change default value of udspeed_minwidth --- include/modules/network.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/modules/network.hpp b/include/modules/network.hpp index b2378bfd..aa70c602 100644 --- a/include/modules/network.hpp +++ b/include/modules/network.hpp @@ -44,14 +44,14 @@ namespace modules { stateflag m_connected{false}; stateflag m_packetloss{false}; - int m_signal = 0; - int m_quality = 0; - int m_counter = -1; // -1 to ignore the first run + int m_signal{0}; + int m_quality{0}; + int m_counter{-1}; // -1 to ignore the first run string m_interface; - int m_ping_nth_update = 0; - int m_udspeed_minwidth = 3; - bool m_accumulate = false; + int m_ping_nth_update{0}; + int m_udspeed_minwidth{0}; + bool m_accumulate{false}; }; }