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

[html] const in search_html_stack

This commit is contained in:
Witold Filipczyk 2022-02-17 19:21:38 +01:00
parent 5cf94fdf32
commit a4c17adcc8
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ dump_html_stack(struct html_context *html_context)
struct html_element *
search_html_stack(struct html_context *html_context, char *name)
search_html_stack(struct html_context *html_context, const char *name)
{
struct html_element *element;
int namelen;

View File

@ -11,7 +11,7 @@ extern "C" {
struct html_context;
struct html_element *search_html_stack(struct html_context *html_context,
char *name);
const char *name);
void html_stack_dup(struct html_context *html_context,
enum html_element_mortality_type type);