diff --git a/tests/test_vector.c b/tests/test_vector.c index 4dc3032..fd1ca59 100644 --- a/tests/test_vector.c +++ b/tests/test_vector.c @@ -208,7 +208,7 @@ void test_vector_sort_string() { // Sort vector with custom data type typedef struct { - char name[256]; + const char *name; int age; } Person;