diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-22 09:38:30 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-22 12:15:13 +0100 |
commit | cfd941effb1b2183f6d3f693496aadd45762523f (patch) | |
tree | 0d2f4ccfe90b166c55b828eba82698e3c1355f1f /src/can_decode_message.cpp | |
parent | 0658e683e23dacce2516ec2743cd53aabcee8fb8 (diff) |
Resolve circular header files inclusion
Change-Id: Ida3de058f1edd2892ebc858d1eb714471fd5f65c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can_decode_message.cpp')
-rw-r--r-- | src/can_decode_message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can_decode_message.cpp b/src/can_decode_message.cpp index 51993b80..126c4fac 100644 --- a/src/can_decode_message.cpp +++ b/src/can_decode_message.cpp @@ -35,7 +35,7 @@ void can_decode_message(can_bus_t &can_bus) /* First we have to found which CanSignal is */ search_key = build_DynamicField((double)can_message.get_id()); - signals = find_can_signals(search_key); + signals = find_can_signals(interface, search_key); /* Decoding the message ! Don't kill the messenger ! */ for(const auto& sig : signals) |