summaryrefslogtreecommitdiffstats
path: root/high-can-binding/high-can-binding-hat.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-08-11 09:13:04 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-08-11 09:13:04 +0200
commitc4935e58769966a9b79b21c45798ab8828fe0ad0 (patch)
tree311116af00c592d8735c7b3ae7d869b4e3a09fbb /high-can-binding/high-can-binding-hat.hpp
parentb2b8239fca576908d0894227109595a32edd4449 (diff)
Fix: raspberrypi3 AGL Yocto build failure
Wrong callback signature, a type was casted implicitly from long unsigned int to long long unsigned int (aka uint64_t) Change-Id: I98a03ccf9e708a60af010bf12bac280dd7f3ea1d Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'high-can-binding/high-can-binding-hat.hpp')
-rw-r--r--high-can-binding/high-can-binding-hat.hpp2
1 files changed, 1 insertions, 1 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);