Skip to content

Commit

Permalink
Typo fix in cannelloni.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jogo- authored Aug 22, 2020
1 parent aa0f0ec commit 42f120b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cannelloni.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct __attribute__((__packed__)) CannelloniDataPacket {
};

/*
* Since we are buffering CAN Frames, it is a good idea to
* Since we are buffering CAN Frames, it is a good idea
* to order them by their identifier to mimic a CAN bus
*/
struct canfd_frame_comp
Expand All @@ -56,7 +56,7 @@ struct canfd_frame_comp
const struct canfd_frame *f2) const
{
canid_t id1, id2;
/* Be extra careful when doing the comparision */
/* Be extra careful when doing the comparison */
if (f1->can_id & CAN_EFF_FLAG)
id1 = f1->can_id & CAN_EFF_MASK;
else
Expand Down

0 comments on commit 42f120b

Please sign in to comment.