cabana: fix valgrind warnings related to uninitialized values (#27851)

fix valgrind warnings related to uninitialized values
pull/27783/head^2
Dean Lee 2 years ago committed by GitHub
parent abeea66f83
commit deeb7cff9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      tools/cabana/dbc/dbc.h

@ -11,8 +11,8 @@
const QString UNTITLED = "untitled";
struct MessageId {
uint8_t source;
uint32_t address;
uint8_t source = 0;
uint32_t address = 0;
QString toString() const {
return QString("%1:%2").arg(source).arg(address, 1, 16);

Loading…
Cancel
Save