mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[fastfind] const
This commit is contained in:
parent
e982333dd9
commit
6f28ab3dcc
@ -425,7 +425,7 @@ enum element_type {
|
|||||||
|
|
||||||
struct element_info {
|
struct element_info {
|
||||||
/* Element name, uppercase. */
|
/* Element name, uppercase. */
|
||||||
char *name;
|
const char *name;
|
||||||
|
|
||||||
/* Element handler. This does the relevant arguments processing and
|
/* Element handler. This does the relevant arguments processing and
|
||||||
* formatting (by calling renderer hooks). Note that in a few cases,
|
* formatting (by calling renderer hooks). Note that in a few cases,
|
||||||
|
@ -15,7 +15,7 @@ extern "C" {
|
|||||||
#ifdef USE_FASTFIND
|
#ifdef USE_FASTFIND
|
||||||
|
|
||||||
struct fastfind_key_value {
|
struct fastfind_key_value {
|
||||||
char *key;
|
const char *key;
|
||||||
void *data;
|
void *data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user