diff options
Diffstat (limited to 'low-can-binding/binding/low-can-subscription.cpp')
-rw-r--r-- | low-can-binding/binding/low-can-subscription.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/low-can-binding/binding/low-can-subscription.cpp b/low-can-binding/binding/low-can-subscription.cpp index 20287b88..3f844da3 100644 --- a/low-can-binding/binding/low-can-subscription.cpp +++ b/low-can-binding/binding/low-can-subscription.cpp @@ -20,12 +20,12 @@ #include "application.hpp" #include "canutil/write.h" -struct afb_event& low_can_subscription_t::get_event() +afb_event_t low_can_subscription_t::get_event() { return event_; } -void low_can_subscription_t::set_event(struct afb_event event) +void low_can_subscription_t::set_event(afb_event_t event) { event_ = event; } |