Skip to content

Commit

Permalink
Fixing a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
srdja committed Jan 28, 2024
1 parent 6bb8c76 commit eb4bc3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/array_sized_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ static MunitResult test_filter2(const MunitParameter p[], void* fixture)
void map_double(uint8_t* e)
{
int* val = (int*)e;
*e = *e * 2;
*val = *val * 2;
}

static MunitResult test_map(const MunitParameter p[], void* fixture)
Expand Down

0 comments on commit eb4bc3b

Please sign in to comment.