Skip to content

Commit

Permalink
forgot the dang braces
Browse files Browse the repository at this point in the history
  • Loading branch information
ads103 authored Dec 26, 2021
1 parent 1650656 commit 6c9ff3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MegaCAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ typedef struct MegaCAN_message_t {
} request; //unpacked
uint8_t response[8] = { 0 }; // response data bytes back to requester, up to 8 bytes
} data; //packed
uint8_t rawData[8] = 0;
uint8_t rawData[8] = { 0};
} MegaCAN_message_t;

typedef struct MegaCAN_broadcast_message_t {
Expand Down

0 comments on commit 6c9ff3f

Please sign in to comment.