aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/keycode.h
diff options
context:
space:
mode:
authorQMK Bot2025-11-30 20:25:13 +0100
committerGitHub2025-11-30 20:25:13 +0100
commit6ed61c65dd66cdbb450a4920a69bae193ec73f15 (patch)
tree2d8cf989fba3622bbde9ea1d2da0f9bfe65edd95 /quantum/keycode.h
parent330a8597f8fb136374285d2b52a978e311b46ede (diff)
[CI] Format code according to conventions (#25827)
Format code according to conventions
Diffstat (limited to 'quantum/keycode.h')
-rw-r--r--quantum/keycode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/keycode.h b/quantum/keycode.h
index 4ff6894a01..6268b7f19b 100644
--- a/quantum/keycode.h
+++ b/quantum/keycode.h
@@ -34,7 +34,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define IS_MOUSEKEY_WHEEL(code) (QK_MOUSE_WHEEL_UP <= (code) && (code) <= QK_MOUSE_WHEEL_RIGHT)
#define IS_MOUSEKEY_ACCEL(code) (QK_MOUSE_ACCELERATION_0 <= (code) && (code) <= QK_MOUSE_ACCELERATION_2)
-#define MOD_BIT(code) (1 << ((code)&0x07))
+#define MOD_BIT(code) (1 << ((code) & 0x07))
// clang-format off