mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[fastfind] const
This commit is contained in:
parent
e982333dd9
commit
6f28ab3dcc
@ -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,
|
||||
|
@ -15,7 +15,7 @@ extern "C" {
|
||||
#ifdef USE_FASTFIND
|
||||
|
||||
struct fastfind_key_value {
|
||||
char *key;
|
||||
const char *key;
|
||||
void *data;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user