diff options
| author | dabstractor <dustindschultz@gmail.com> | 2025-05-07 03:09:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-07 00:09:01 -0700 |
| commit | 1becbaefbea5cb48cda9d4ec7f0802c4052de893 (patch) | |
| tree | 2e69c60de9350de9cdd987e0aa78d939d7e6ff01 /quantum/command.c | |
| parent | 04fbcdc68d1aceeef061413d2a049b66a00f1bab (diff) | |
Fixed print statement after enabling 32-bit layers (#25027)
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 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) |
| 245 | static void print_eeconfig(void) { | 245 | static 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(); |
