From 9843c57f13d723deb49d8039f446e96d1004123b Mon Sep 17 00:00:00 2001 From: SjB Date: Sun, 19 Nov 2017 23:32:24 -0500 Subject: [PATCH] fix: coding style with make astyle --- src/key_defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/key_defs.h b/src/key_defs.h index 82e91e64..181a4964 100644 --- a/src/key_defs.h +++ b/src/key_defs.h @@ -128,5 +128,5 @@ typedef union Key_ { use the 10 lsb as the HID Consumer code. If you need to get the keycode of a Consumer key use the CONSUMER(key) macro this will return the 10bit keycode. */ -#define CONSUMER(key) (key.raw & 0x03FF) +#define CONSUMER(key) (key.raw & 0x03FF) #define CONSUMER_KEY(code, flags) (Key) { .raw = (code) | ((flags | SYNTHETIC|IS_CONSUMER) << 8) }