Skip to content

Commit 186da0b

Browse files
committed
Fix modifier for size_t
1 parent 78562d3 commit 186da0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shape.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,7 @@ Init_default_shapes(void)
15291529
}
15301530

15311531
if (heaps_count > SHAPE_ID_HEAP_INDEX_MAX) {
1532-
rb_bug("Init_default_shapes initialized with %lu heaps, only up to %u are supported", heaps_count, SHAPE_ID_HEAP_INDEX_MAX);
1532+
rb_bug("Init_default_shapes initialized with %zu heaps, only up to %u are supported", heaps_count, SHAPE_ID_HEAP_INDEX_MAX);
15331533
}
15341534

15351535
size_t index;

0 commit comments

Comments
 (0)