summaryrefslogtreecommitdiff
path: root/quantum/command.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2025-05-07 07:09:37 +0000
committerQMK Bot <hello@qmk.fm>2025-05-07 07:09:37 +0000
commit4836fcf831688d337ff666a038e01dd1a0292b2d (patch)
tree981f8cee1500ebea993ed227cf0d563212cef9ab /quantum/command.c
parente3c613c79c2211163abb914c8725cb495942fbb9 (diff)
parent1becbaefbea5cb48cda9d4ec7f0802c4052de893 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum/command.c')
-rw-r--r--quantum/command.c2
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) {
243 243
244#if !defined(NO_PRINT) && !defined(USER_PRINT) 244#if !defined(NO_PRINT) && !defined(USER_PRINT)
245static void print_eeconfig(void) { 245static void print_eeconfig(void) {
246 xprintf("eeconfig:\ndefault_layer: %u\n", eeconfig_read_default_layer()); 246 xprintf("eeconfig:\ndefault_layer: %" PRIu32 "\n", (uint32_t)eeconfig_read_default_layer());
247 247
248 debug_config_t dc; 248 debug_config_t dc;
249 eeconfig_read_debug(&dc); 249 eeconfig_read_debug(&dc);