From d345c90ba36d73b48f5c434475932c8c46d6bb3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Fri, 4 Aug 2023 00:02:35 +0200 Subject: [PATCH] style: fix linting --- test/string_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/string_test.c b/test/string_test.c index 0e5ecf4..b76fdc9 100644 --- a/test/string_test.c +++ b/test/string_test.c @@ -224,7 +224,7 @@ void string_get_formatted_number_test() { void string_get_last_occurence_of_character_test() { string_t string = "abcdef"; - char *result = string_get_last_occurence_of_character(string, 'a'); + char* result = string_get_last_occurence_of_character(string, 'a'); assert(assert_string_equal(result, "abcdef")); free(result);