Skip to content

Commit 6cb4861

Browse files
committed
fix format specifier for numa nodes
1 parent 08c3376 commit 6cb4861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stats.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ static void _mi_stats_print(mi_stats_t* stats, mi_output_fun* out0, void* arg0)
348348
mi_stat_counter_print(&stats->malloc_guarded_count, "guarded", out, arg);
349349
mi_stat_print(&stats->threads, "threads", -1, out, arg);
350350
mi_stat_counter_print_avg(&stats->page_searches, "searches", out, arg);
351-
_mi_fprintf(out, arg, "%10s: %5zu\n", "numa nodes", _mi_os_numa_node_count());
351+
_mi_fprintf(out, arg, "%10s: %5i\n", "numa nodes", _mi_os_numa_node_count());
352352

353353
size_t elapsed;
354354
size_t user_time;

0 commit comments

Comments
 (0)