summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/command.c b/quantum/command.c
index 024d96917d..dde9961e99 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 dc.raw = eeconfig_read_debug(); 249 dc.raw = eeconfig_read_debug();