Skip to content

Commit 3d40a53

Browse files
committed
fix mirsa style error
1 parent 54cf677 commit 3d40a53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

board/drivers/can_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ void can_set_forwarding(uint8_t from, uint8_t to) {
156156
#endif
157157

158158
void ignition_can_hook(CANPacket_t *msg) {
159-
if (msg->bus == 0U || msg->bus == 2U) {
159+
if ((msg->bus == 0U) || (msg->bus == 2U)) {
160160
int len = GET_LEN(msg);
161161

162162
// Body exception

0 commit comments

Comments
 (0)