From eab315e935dced643c4cae9c9697ebe520627f36 Mon Sep 17 00:00:00 2001 From: James Young <18669334+noroadsleft@users.noreply.github.com> Date: Tue, 1 Aug 2023 22:49:58 -0700 Subject: Fix Dynamic Macro Compilation for avr-gcc 5.4.0 + Linux (#21653) Co-authored-by: Joel Challis --- quantum/process_keycode/process_dynamic_macro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'quantum') diff --git a/quantum/process_keycode/process_dynamic_macro.c b/quantum/process_keycode/process_dynamic_macro.c index 5e4a6fa308..30a51503db 100644 --- a/quantum/process_keycode/process_dynamic_macro.c +++ b/quantum/process_keycode/process_dynamic_macro.c @@ -196,7 +196,7 @@ static keyrecord_t *macro_end = macro_buffer; static keyrecord_t *const r_macro_buffer = macro_buffer + DYNAMIC_MACRO_SIZE - 1; /* Like macro_end but for the second macro. */ -static keyrecord_t *r_macro_end = r_macro_buffer; +static keyrecord_t *r_macro_end = macro_buffer + DYNAMIC_MACRO_SIZE - 1; /* A persistent pointer to the current macro position (iterator) * used during the recording. */ -- cgit v1.2.3