diff --git a/src/main.c b/src/main.c index 0bec0fc..17964ff 100644 --- a/src/main.c +++ b/src/main.c @@ -25,7 +25,7 @@ int test_vec_basic(){ } int test_vec_add(){ vec test_vec; - const char* test_string = "test"; + char* test_string = "test"; int return_code; vec_init(&test_vec); @@ -37,7 +37,7 @@ int test_vec_add(){ } int test_vec_remove(){ vec test_vec; - const char* test_string = "test"; + char* test_string = "test"; int return_code; vec_init(&test_vec); @@ -50,7 +50,7 @@ int test_vec_remove(){ } int test_vec_find(){ vec test_vec; - const char* test_string = "test"; + char* test_string = "test"; int return_code; vec_init(&test_vec);