Skip to content

Commit

Permalink
fix: compare with void * instead of int
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed May 8, 2024
1 parent 381400b commit e03e5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/sk_darray_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static u8 sk_darray_test_create_destroy(void) {
carbon_should_be(0, x.capacity);
carbon_should_be(0, x.element_size);
carbon_should_be(0, x.curr_len);
carbon_should_be(0, x.data);
carbon_should_be_p(0, x.data);
return 1;
}

Expand Down

0 comments on commit e03e5ed

Please sign in to comment.