Fixed print statement after enabling 32-bit layers (#25027)

This commit is contained in:
dabstractor 2025-05-07 03:09:01 -04:00 committed by GitHub
parent 04fbcdc68d
commit 1becbaefbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -243,7 +243,7 @@ static void print_status(void) {
#if !defined(NO_PRINT) && !defined(USER_PRINT)
static void print_eeconfig(void) {
xprintf("eeconfig:\ndefault_layer: %u\n", eeconfig_read_default_layer());
xprintf("eeconfig:\ndefault_layer: %" PRIu32 "\n", (uint32_t)eeconfig_read_default_layer());
debug_config_t dc;
dc.raw = eeconfig_read_debug();