diff options
| author | QMK Bot | 2025-03-29 14:20:13 +0100 |
|---|---|---|
| committer | QMK Bot | 2025-03-29 14:20:13 +0100 |
| commit | 7adb4dc6fb967f198d89dddd08de0903695f3875 (patch) | |
| tree | 15eb7b7c412c44ad15f505aa551db5dcee427b68 /modules | |
| parent | a8fb9e1462284eb2b9d5da11c08f0288422019b1 (diff) | |
| parent | 49d13595f64577bc50c08b460538d35055befdf8 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/qmk/hello_world/hello_world.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/qmk/hello_world/hello_world.c b/modules/qmk/hello_world/hello_world.c index d9dd366100..dcabfc60ea 100644 --- a/modules/qmk/hello_world/hello_world.c +++ b/modules/qmk/hello_world/hello_world.c @@ -7,7 +7,7 @@ ASSERT_COMMUNITY_MODULES_MIN_API_VERSION(1, 0, 0); uint32_t delayed_hello_world(uint32_t trigger_time, void *cb_arg) { - printf("Hello, world! I'm a QMK based keyboard! The keymap array size is %d bytes.\n", (int)hello_world_introspection().total_size); + dprintf("Hello, world! I'm a QMK based keyboard! The keymap array size is %d bytes.\n", (int)hello_world_introspection().total_size); return 0; } |