Skip to content

Commit

Permalink
Remove superfluous space.
Browse files Browse the repository at this point in the history
  • Loading branch information
aentinger committed May 2, 2023
1 parent 6aa85ce commit 7b71e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MCP2515/MCP2515_Control.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MCP2515_Control

inline void reset () { _io.reset(); }
inline uint8_t status () { return _io.status(); }
inline void clearIntFlag(CANINTF const int_flag) { _io.clrBit(Register::CANINTF, bp(int_flag)); }
inline void clearIntFlag(CANINTF const int_flag) { _io.clrBit(Register::CANINTF, bp(int_flag)); }
inline void clearErrFlag(EFLG const err_flag) { _io.clrBit(Register::EFLG, bp(err_flag)); }

private:
Expand Down

0 comments on commit 7b71e7a

Please sign in to comment.