cabana: fix bit mask calculation bug (#35755)

Fix bit mask calculation bug
pull/35703/merge
Dean Lee 5 days ago committed by GitHub
parent 618a25a612
commit 22e54af238
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      tools/cabana/dbc/dbc.cc

@ -109,7 +109,7 @@ void cabana::Msg::update() {
mask[i] |= ((1ULL << sz) - 1) << shift;
bits -= size;
bits -= sz;
i = sig->is_little_endian ? i - 1 : i + 1;
}
}

Loading…
Cancel
Save