commit | 11b5d8fcaf5b9b3b00ca3bd1260ed4db1293c8ab | [log] [tgz] |
---|---|---|
author | Matthew Barth <msbarth@us.ibm.com> | Thu Jan 28 14:04:09 2021 -0600 |
committer | Matthew Barth <msbarth@us.ibm.com> | Thu Jan 28 14:04:09 2021 -0600 |
tree | c43dab1348c35b6996285ee4b39a18c81ce3d03c | |
parent | 56f1ffcce5384510ddb5079caa14ba372d81ba01 [diff] |
monitor: Only stop timer when its running Signed-off-by: Matthew Barth <msbarth@us.ibm.com> Change-Id: If47367d56e111b2429489520a9ac54d701c54151
diff --git a/monitor/fan.cpp b/monitor/fan.cpp index 69a23b0..58730da 100644 --- a/monitor/fan.cpp +++ b/monitor/fan.cpp
@@ -202,7 +202,10 @@ case MethodMode::timebased: if (sensor.functional()) { - sensor.stopTimer(); + if (sensor.timerRunning()) + { + sensor.stopTimer(); + } } else {