From 86f2fb20dd7786dc76c65de028c07d46dff444a2 Mon Sep 17 00:00:00 2001 From: Marco Cetica Date: Mon, 17 Nov 2025 09:28:30 +0100 Subject: [PATCH] Fixed bug in vector unit test --- tests/test_vector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;