Skip to content

Commit

Permalink
no -
Browse files Browse the repository at this point in the history
  • Loading branch information
sshane committed Jun 8, 2024
1 parent 4be3dd9 commit 781fe75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion can/packer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ CANPacker::CANPacker(const std::string& dbc_name) {
std::vector<uint8_t> CANPacker::pack(uint32_t address, const std::vector<SignalPackValue> &signals) {
auto msg_it = message_lookup.find(address);
if (msg_it == message_lookup.end()) {
LOGE("undefined address - %d", address);
LOGE("undefined address %d", address);
return {};
}

Expand Down

0 comments on commit 781fe75

Please sign in to comment.