aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--high-can-binding/high-can-binding-hat.hpp2
-rw-r--r--high-can-binding/high-can-binding.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/high-can-binding/high-can-binding-hat.hpp b/high-can-binding/high-can-binding-hat.hpp
index 487ee72..28e8306 100644
--- a/high-can-binding/high-can-binding-hat.hpp
+++ b/high-can-binding/high-can-binding-hat.hpp
@@ -12,4 +12,4 @@ extern "C"
void unsubscribe(afb_req request);
void get(afb_req request);
void initHigh();
- int ticked(sd_event_source *source, unsigned long t, void *data);
+ int ticked(sd_event_source *source, uint64_t t, void *data);
diff --git a/high-can-binding/high-can-binding.cpp b/high-can-binding/high-can-binding.cpp
index 4232ae2..4891f6c 100644
--- a/high-can-binding/high-can-binding.cpp
+++ b/high-can-binding/high-can-binding.cpp
@@ -57,7 +57,7 @@ void get(afb_req request)
/// @brief entry point for systemD timers. Treatment itself is made in High class.
/// @param[in] source: systemD timer, t: time of tick, data: interval (ms).
-int ticked(sd_event_source *source, long unsigned int t, void* data)
+int ticked(sd_event_source *source, uint64_t t, void* data)
{
high.tick(source, t, data);
return 0;