diff options
| author | QMK Bot | 2025-05-07 09:09:37 +0200 |
|---|---|---|
| committer | QMK Bot | 2025-05-07 09:09:37 +0200 |
| commit | 4836fcf831688d337ff666a038e01dd1a0292b2d (patch) | |
| tree | 981f8cee1500ebea993ed227cf0d563212cef9ab /quantum/command.c | |
| parent | e3c613c79c2211163abb914c8725cb495942fbb9 (diff) | |
| parent | 1becbaefbea5cb48cda9d4ec7f0802c4052de893 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum/command.c')
| -rw-r--r-- | quantum/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/command.c b/quantum/command.c index 96b637f842..998d9b9aa1 100644 --- a/quantum/command.c +++ b/quantum/command.c @@ -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; eeconfig_read_debug(&dc); |