aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/sekigon
diff options
context:
space:
mode:
authorJoel Challis2025-07-07 17:15:50 +0200
committerGitHub2025-07-07 17:15:50 +0200
commit7827f9fbe369bd9ad6c30c88f36ab53dafbb719d (patch)
tree8acee69b130c7d0dcbafe606340a9905da0a0c8c /keyboards/sekigon
parentd9f2d8d241be9ca96a5c7c7fde8de1308a7c5f14 (diff)
Compilation fixes for `-fno-common` (#25436)
Diffstat (limited to 'keyboards/sekigon')
-rw-r--r--keyboards/sekigon/grs_70ec/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/sekigon/grs_70ec/matrix.c b/keyboards/sekigon/grs_70ec/matrix.c
index 926ed6f813..718423e57b 100644
--- a/keyboards/sekigon/grs_70ec/matrix.c
+++ b/keyboards/sekigon/grs_70ec/matrix.c
@@ -40,7 +40,7 @@ extern matrix_row_t raw_matrix[MATRIX_ROWS]; // raw values
extern matrix_row_t matrix[MATRIX_ROWS]; // debounced values
// row offsets for each hand
-uint8_t thisHand, thatHand;
+static uint8_t thisHand, thatHand;
// user-defined overridable functions
__attribute__((weak)) void matrix_slave_scan_user(void) {}