From 8b90e1d3f46b77e162caa29a89952182edaa465c Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sun, 20 Jun 2021 00:32:55 +0200 Subject: [PATCH] Remove extra ';' in #define --- app/src/control_msg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/control_msg.h b/app/src/control_msg.h index c1099c79..a259d0db 100644 --- a/app/src/control_msg.h +++ b/app/src/control_msg.h @@ -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,