1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-26 02:46:13 -04:00

[cookie] cast

This commit is contained in:
Witold Filipczyk 2022-01-24 19:32:42 +01:00
parent 851d856871
commit a453e004c5

View File

@ -893,7 +893,7 @@ static void
free_cookies_list(LIST_OF(struct cookie) *list)
{
while (!list_empty(*list)) {
struct cookie *cookie = list->next;
struct cookie *cookie = (struct cookie *)list->next;
delete_cookie(cookie);
}