From 28df94927985229ce81f568ba7ca99d54d881cc2 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 23 Jun 2026 12:25:36 +0100 Subject: [PATCH] Fix typo --- tests/core/mem/test_mem_dynamic_arena.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/mem/test_mem_dynamic_arena.odin b/tests/core/mem/test_mem_dynamic_arena.odin index b3cfc48f8..7d2b32f1a 100644 --- a/tests/core/mem/test_mem_dynamic_arena.odin +++ b/tests/core/mem/test_mem_dynamic_arena.odin @@ -39,7 +39,7 @@ expect_arena_allocation :: proc(t: ^testing.T, expected_used_bytes, num_bytes, a arena.current_pos, arena.bytes_left, ) - testing.expectf(t, uintptr(element) % uint(alignment) == 0, "Expected allocation to be aligned to %d byte boundary, got %v", alignment, element) + testing.expectf(t, uintptr(element) % uintptr(alignment) == 0, "Expected allocation to be aligned to %d byte boundary, got %v", alignment, element) mem.dynamic_arena_destroy(&arena) testing.expect(t, arena.used_blocks == nil)