Fix Dynamic Macro Compilation for avr-gcc 5.4.0 + Linux (#21653)

Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
James Young 2023-08-01 22:49:58 -07:00 committed by GitHub
parent 242b8c7f3d
commit eab315e935
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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. */