From e7aed3261b4ee9ddaf82508e2b266e7fa8be065b Mon Sep 17 00:00:00 2001 From: FLyrfors-MI <202259867+FLyrfors-MI@users.noreply.github.com> Date: Sat, 7 Feb 2026 22:26:00 +0100 Subject: [PATCH] Correct `printf` format in pheap.c (#2814) See #2813 --- src/common/pico_util/pheap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/pico_util/pheap.c b/src/common/pico_util/pheap.c index c7c9575e..d53c72e6 100644 --- a/src/common/pico_util/pheap.c +++ b/src/common/pico_util/pheap.c @@ -134,5 +134,5 @@ static uint ph_dump_node(pheap_t *heap, pheap_node_id_t id, void (*dump_key)(phe void ph_dump(pheap_t *heap, void (*dump_key)(pheap_node_id_t, void *), void *user_data) { uint count = ph_dump_node(heap, heap->root_id, dump_key, user_data, 0); - printf("node_count %d\n", count); -} \ No newline at end of file + printf("node_count %u\n", count); +}