Skip to content

Commit 7894cca

Browse files
committedOct 31, 2023
Fix warnings on Windows
1 parent b18e713 commit 7894cca

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎Objects/obmalloc.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -2730,23 +2730,23 @@ static bool _collect_alloc_stats(
27302730
static void
27312731
py_mimalloc_print_stats(FILE *out)
27322732
{
2733-
fprintf(out, "Small block threshold = %ld, in %u size classes.\n",
2733+
fprintf(out, "Small block threshold = %zd, in %u size classes.\n",
27342734
MI_SMALL_OBJ_SIZE_MAX, MI_BIN_HUGE);
2735-
fprintf(out, "Medium block threshold = %ld\n",
2735+
fprintf(out, "Medium block threshold = %zd\n",
27362736
MI_MEDIUM_OBJ_SIZE_MAX);
2737-
fprintf(out, "Large object max size = %ld\n",
2737+
fprintf(out, "Large object max size = %zd\n",
27382738
MI_LARGE_OBJ_SIZE_MAX);
27392739

27402740
mi_heap_t *heap = mi_heap_get_default();
27412741
struct _alloc_stats stats;
27422742
memset(&stats, 0, sizeof(stats));
27432743
mi_heap_visit_blocks(heap, false, &_collect_alloc_stats, &stats);
27442744

2745-
fprintf(out, " Allocated Blocks: %ld\n", stats.allocated_blocks);
2746-
fprintf(out, " Allocated Bytes: %ld\n", stats.allocated_bytes);
2747-
fprintf(out, " Allocated Bytes w/ Overhead: %ld\n", stats.allocated_with_overhead);
2748-
fprintf(out, " Bytes Reserved: %ld\n", stats.bytes_reserved);
2749-
fprintf(out, " Bytes Committed: %ld\n", stats.bytes_committed);
2745+
fprintf(out, " Allocated Blocks: %zd\n", stats.allocated_blocks);
2746+
fprintf(out, " Allocated Bytes: %zd\n", stats.allocated_bytes);
2747+
fprintf(out, " Allocated Bytes w/ Overhead: %zd\n", stats.allocated_with_overhead);
2748+
fprintf(out, " Bytes Reserved: %zd\n", stats.bytes_reserved);
2749+
fprintf(out, " Bytes Committed: %zd\n", stats.bytes_committed);
27502750
}
27512751
#endif
27522752

0 commit comments

Comments
 (0)