mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -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)
|
free_cookies_list(LIST_OF(struct cookie) *list)
|
||||||
{
|
{
|
||||||
while (!list_empty(*list)) {
|
while (!list_empty(*list)) {
|
||||||
struct cookie *cookie = list->next;
|
struct cookie *cookie = (struct cookie *)list->next;
|
||||||
|
|
||||||
delete_cookie(cookie);
|
delete_cookie(cookie);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user