diff --git a/0x11-singly_linked_lists/4-free_list.c b/0x11-singly_linked_lists/4-free_list.c index 8f2bee0..7a2916e 100644 --- a/0x11-singly_linked_lists/4-free_list.c +++ b/0x11-singly_linked_lists/4-free_list.c @@ -13,5 +13,5 @@ void free_list(list_t *head) copy = head->next; free(head->str); free(head); - } + } }