From a005e3bb632fdb2f42fc1b00b17d1141bbc2686b Mon Sep 17 00:00:00 2001 From: srdja <1875137+srdja@users.noreply.github.com> Date: Sun, 28 Jan 2024 00:05:07 -0800 Subject: [PATCH] Fix type error --- test/array_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/array_test.c b/test/array_test.c index 8c1cb54..3bdd5d2 100644 --- a/test/array_test.c +++ b/test/array_test.c @@ -955,7 +955,7 @@ static MunitResult test_filter2(const MunitParameter p[], void* fixture) return MUNIT_OK; } -void map_double(uint8_t* e) +void map_double(void* e) { int* val = (int*)e; *val = *val * 2;