diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-08 13:17:03 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:39 +0100 |
commit | c631ee0bf8f702004c9d21c501d9588458c0ca08 (patch) | |
tree | 8fea097188fd5cbd450a2fe3f76854f5af213a7a /src/can | |
parent | 501233011d2e3fd872f0cfabbe35f3d3bac3cf44 (diff) |
Fix : wrong attribute type
Change-Id: I8a87c295d4d76a5551fbb67b04b9fee69644eb00
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can')
-rw-r--r-- | src/can/can-signals.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can/can-signals.hpp b/src/can/can-signals.hpp index e618c19e..2bc77b09 100644 --- a/src/can/can-signals.hpp +++ b/src/can/can-signals.hpp @@ -125,7 +125,7 @@ typedef struct CanSignal CanSignal; class can_signal_t { private: - struct CanMessageDefinition* message_; /*!< message - The message this signal is a part of. */ + struct can_message_definition_t* message_; /*!< message - The message this signal is a part of. */ const std::string generic_name_; /*!< generic_name - The name of the signal to be output over USB.*/ uint8_t bitPosition_; /*!< bitPosition - The starting bit of the signal in its CAN message (assuming * non-inverted bit numbering, i.e. the most significant bit of |