summary refs log tree commit diff
path: root/quantum/process_keycode
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-11-17 12:42:00 -0800
committerGitHub <noreply@github.com>2021-11-17 20:42:00 +0000
commit25b087925c8ea88816c4049b7bcbd9dd850f2cef (patch)
tree96e7a370212e7b8c8935d6617c8d9c555042f9ca /quantum/process_keycode
parent45f4f446fb8473008252756e45023fc11bfe1472 (diff)
Format code according to conventions (#15195)
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r--quantum/process_keycode/process_auto_shift.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/quantum/process_keycode/process_auto_shift.c b/quantum/process_keycode/process_auto_shift.c
index 02af5174f7..4d928edb57 100644
--- a/quantum/process_keycode/process_auto_shift.c
+++ b/quantum/process_keycode/process_auto_shift.c
@@ -21,11 +21,11 @@
 
 #    include "process_auto_shift.h"
 
-#ifndef AUTO_SHIFT_DISABLED_AT_STARTUP
-#   define AUTO_SHIFT_STARTUP_STATE true    /* enabled */
-#else
-#   define AUTO_SHIFT_STARTUP_STATE false   /* disabled */
-#endif
+#    ifndef AUTO_SHIFT_DISABLED_AT_STARTUP
+#        define AUTO_SHIFT_STARTUP_STATE true /* enabled */
+#    else
+#        define AUTO_SHIFT_STARTUP_STATE false /* disabled */
+#    endif
 
 static uint16_t autoshift_time    = 0;
 static uint16_t autoshift_timeout = AUTO_SHIFT_TIMEOUT;