1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00

[html] const target in put_link_line

This commit is contained in:
Witold Filipczyk 2022-02-15 16:27:47 +01:00
parent b06dea5bed
commit c05a10c9b0
2 changed files with 2 additions and 2 deletions

View File

@ -393,7 +393,7 @@ html_source(struct html_context *html_context, char *a,
/* prefix can have entities in it, but linkname cannot. */
void
put_link_line(const char *prefix, const char *linkname,
char *link, char *target,
char *link, const char *target,
struct html_context *html_context)
{
html_context->has_link_lines = 1;

View File

@ -10,7 +10,7 @@ extern "C" {
struct html_context;
void put_link_line(const char *prefix, const char *linkname, char *link, char *target, struct html_context *html_context);
void put_link_line(const char *prefix, const char *linkname, char *link, const char *target, struct html_context *html_context);
element_handler_T html_a;
element_handler_T html_applet;