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

[fastfind] const

This commit is contained in:
Witold Filipczyk 2022-01-31 17:45:42 +01:00
parent e982333dd9
commit 6f28ab3dcc
2 changed files with 2 additions and 2 deletions

View File

@ -425,7 +425,7 @@ enum element_type {
struct element_info {
/* Element name, uppercase. */
char *name;
const char *name;
/* Element handler. This does the relevant arguments processing and
* formatting (by calling renderer hooks). Note that in a few cases,

View File

@ -15,7 +15,7 @@ extern "C" {
#ifdef USE_FASTFIND
struct fastfind_key_value {
char *key;
const char *key;
void *data;
};