mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
Squash warnings
This commit is contained in:
parent
bd244b121a
commit
1f36e48372
@ -2050,7 +2050,8 @@ static bool html_convert(struct content *c)
|
||||
}
|
||||
|
||||
/* Retrieve forms from parser */
|
||||
htmlc->forms = html_forms_get_forms(htmlc->encoding, htmlc->document);
|
||||
htmlc->forms = html_forms_get_forms(htmlc->encoding,
|
||||
(dom_html_document *) htmlc->document);
|
||||
for (f = htmlc->forms; f != NULL; f = f->prev) {
|
||||
char *action;
|
||||
url_func_result res;
|
||||
|
@ -258,7 +258,7 @@ out:
|
||||
static struct form_control *
|
||||
parse_input_element(struct form *forms, dom_html_input_element *input)
|
||||
{
|
||||
struct form_control *control;
|
||||
struct form_control *control = NULL;
|
||||
dom_html_form_element *form = NULL;
|
||||
dom_string *ds_type = NULL;
|
||||
dom_string *ds_name = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user