mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[cookie] cast
This commit is contained in:
parent
851d856871
commit
a453e004c5
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user