1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

[html] const in lt_default_name

This commit is contained in:
Witold Filipczyk 2022-02-15 17:20:48 +01:00
parent c05a10c9b0
commit 8c218ffc93

View File

@ -763,7 +763,7 @@ struct hlink {
struct lt_default_name { struct lt_default_name {
enum hlink_type type; enum hlink_type type;
char *str; const char *str;
}; };
/* TODO: i18n */ /* TODO: i18n */
@ -804,7 +804,7 @@ static struct lt_default_name lt_names[] = {
}; };
/* Search for default name for this link according to its type. */ /* Search for default name for this link according to its type. */
static char * static const char *
get_lt_default_name(struct hlink *link) get_lt_default_name(struct hlink *link)
{ {
struct lt_default_name *entry = lt_names; struct lt_default_name *entry = lt_names;
@ -931,7 +931,7 @@ html_link(struct html_context *html_context, char *a,
if (!link.name || link.type != LT_UNKNOWN) if (!link.name || link.type != LT_UNKNOWN)
/* Give preference to our default names for known types. */ /* Give preference to our default names for known types. */
name = get_lt_default_name(&link); name = (char *)get_lt_default_name(&link);
else else
name = link.name; name = link.name;