1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-11-08 22:31:31 +01:00

style: fix linting

This commit is contained in:
Théo LUDWIG 2023-08-04 00:02:35 +02:00
parent 209440588d
commit d345c90ba3
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -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);