diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-27 18:50:24 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-11 12:41:41 +0200 |
commit | 17f087412b104b8ff96814066b54597ff6082649 (patch) | |
tree | 7eaa76842c0afd1fa7dd7a6fbd097c6cd942ce4b /src/can/can-message.cpp | |
parent | 5ecd8c0e9dcc58a04cfed2de2493ad973057b09b (diff) |
Erase compilation WARNING.
Useless tests and type cast about numbers.
Change-Id: I6fe13b7dfec8529520730f83e83d2dd3da3a674c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-message.cpp')
-rw-r--r-- | src/can/can-message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can/can-message.cpp b/src/can/can-message.cpp index af0d3f38..f61de67e 100644 --- a/src/can/can-message.cpp +++ b/src/can/can-message.cpp @@ -234,7 +234,7 @@ can_message_t can_message_t::convert_from_canfd_frame(const struct canfd_frame& }; DEBUG(binder_interface, "convert_from_canfd_frame: Found id: %X, format: %X, length: %X, data %02X%02X%02X%02X%02X%02X%02X%02X", - id, format, length, data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]); + id, (uint8_t)format, length, data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]); } return can_message_t(maxdlen, id, length, format, rtr_flag, flags, data); |