From 186da0b481333354bc97534396fb91e222989dc9 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 10 May 2026 19:56:16 +0900 Subject: Fix modifier for `size_t` --- shape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shape.c b/shape.c index 2b4256e5f3..24f1394f6c 100644 --- a/shape.c +++ b/shape.c @@ -1529,7 +1529,7 @@ Init_default_shapes(void) } if (heaps_count > SHAPE_ID_HEAP_INDEX_MAX) { - rb_bug("Init_default_shapes initialized with %lu heaps, only up to %u are supported", heaps_count, SHAPE_ID_HEAP_INDEX_MAX); + rb_bug("Init_default_shapes initialized with %zu heaps, only up to %u are supported", heaps_count, SHAPE_ID_HEAP_INDEX_MAX); } size_t index; -- cgit v1.2.3