Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
test/lib/heap: fix munit comparison type.
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Borderé <[email protected]>
  • Loading branch information
Mathieu Borderé committed Jan 31, 2024
1 parent 4f98e32 commit be6b326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lib/heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static void *heapAlignedAlloc(void *data, size_t alignment, size_t size)
static void heapAlignedFree(void *data, size_t alignment, void *ptr)
{
struct heap *h = data;
munit_assert_int(alignment, ==, h->alignment);
munit_assert_ulong(alignment, ==, h->alignment);
heapFree(data, ptr);
}

Expand Down

0 comments on commit be6b326

Please sign in to comment.