mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[html] const in search_html_stack
This commit is contained in:
parent
5cf94fdf32
commit
a4c17adcc8
@ -50,7 +50,7 @@ dump_html_stack(struct html_context *html_context)
|
|||||||
|
|
||||||
|
|
||||||
struct html_element *
|
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;
|
struct html_element *element;
|
||||||
int namelen;
|
int namelen;
|
||||||
|
@ -11,7 +11,7 @@ extern "C" {
|
|||||||
struct html_context;
|
struct html_context;
|
||||||
|
|
||||||
struct html_element *search_html_stack(struct html_context *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,
|
void html_stack_dup(struct html_context *html_context,
|
||||||
enum html_element_mortality_type type);
|
enum html_element_mortality_type type);
|
||||||
|
Loading…
Reference in New Issue
Block a user