Skip to content

Commit

Permalink
Remove extra ';' in #define
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1v committed Jun 19, 2021
1 parent b846d3a commit ea01cec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/control_msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// type: 1 byte; paste flag: 1 byte; length: 4 bytes
#define CONTROL_MSG_CLIPBOARD_TEXT_MAX_LENGTH (CONTROL_MSG_MAX_SIZE - 6)

#define POINTER_ID_MOUSE UINT64_C(-1);
#define POINTER_ID_VIRTUAL_FINGER UINT64_C(-2);
#define POINTER_ID_MOUSE UINT64_C(-1)
#define POINTER_ID_VIRTUAL_FINGER UINT64_C(-2)

enum control_msg_type {
CONTROL_MSG_TYPE_INJECT_KEYCODE,
Expand Down

0 comments on commit ea01cec

Please sign in to comment.