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
                 {