From b5779138dfdda387d4c351d220aa112f67fb31ed Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 6 Mar 2016 11:50:37 +1000 Subject: [PATCH] Clean up a few nastier compile-time warnings --- sleepyhead/SleepLib/calcs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sleepyhead/SleepLib/calcs.cpp b/sleepyhead/SleepLib/calcs.cpp index ff26b8c6..738a3957 100644 --- a/sleepyhead/SleepLib/calcs.cpp +++ b/sleepyhead/SleepLib/calcs.cpp @@ -428,7 +428,7 @@ void FlowParser::calc(bool calcResp, bool calcTv, bool calcTi, bool calcTe, bool double time = start; int bs, be, bm; - double st, et, mt; + double st, et=0, mt; ///////////////////////////////////////////////////////////////////////////////// // Respiratory Rate setup @@ -1833,8 +1833,8 @@ void flagLargeLeaks(Session *session) EventList * LL = nullptr; qint64 time = 0; - EventDataType lastvalue; - qint64 leaktime; + EventDataType lastvalue=-1; + qint64 leaktime=0; for (int ec = 0; ec < evlsize; ++ec) { EventList &el = *EVL[ec]; int count = el.count();