Fix: compile conversion warning
authorRomain Forlot <romain.forlot@iot.bzh>
Tue, 16 May 2017 10:48:24 +0000 (12:48 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Fri, 19 May 2017 09:36:43 +0000 (11:36 +0200)
Change-Id: I174c546afb6b21df431e0a61677292d43af8f0ca
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
CAN-binder/low-can-binding/utils/timer.cpp

index a7ed558..3d90a00 100644 (file)
@@ -97,7 +97,7 @@ bool frequency_clock_t::elapsed(bool stagger)
                last_tick_ = get_time_function()() - (rand() % int(period));
 
        // Make sure it ticks the the first call
-       elapsed_time = !started() ? period : get_time_function()() - last_tick_;
+       elapsed_time = !started() ? period : (float)get_time_function()() - (float)last_tick_;
 
        return frequency_ == 0 || elapsed_time >= period;
 }