mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Compile fix for commit e876df70d8
This commit is contained in:
parent
c1b91c7bf3
commit
890903a65d
@ -797,7 +797,7 @@ get_image_map(unsigned char *head, unsigned char *pos, unsigned char *eof,
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct html_element *
|
void *
|
||||||
init_html_parser_state(struct html_context *html_context,
|
init_html_parser_state(struct html_context *html_context,
|
||||||
enum html_element_mortality_type type,
|
enum html_element_mortality_type type,
|
||||||
int align, int margin, int width)
|
int align, int margin, int width)
|
||||||
@ -823,8 +823,10 @@ init_html_parser_state(struct html_context *html_context,
|
|||||||
|
|
||||||
void
|
void
|
||||||
done_html_parser_state(struct html_context *html_context,
|
done_html_parser_state(struct html_context *html_context,
|
||||||
struct html_element *element)
|
void *state)
|
||||||
{
|
{
|
||||||
|
struct html_element *element = state;
|
||||||
|
|
||||||
html_context->line_breax = 1;
|
html_context->line_breax = 1;
|
||||||
|
|
||||||
while (html_top != element) {
|
while (html_top != element) {
|
||||||
|
Loading…
Reference in New Issue
Block a user