1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[options] const char * in get_opt_

This commit is contained in:
Witold Filipczyk 2021-03-01 22:02:50 +01:00
parent a48cd50a8b
commit 695ef45cf1
2 changed files with 3 additions and 3 deletions

View File

@ -284,7 +284,7 @@ get_opt_(
#ifdef CONFIG_DEBUG
char *file, int line, enum option_type option_type,
#endif
struct option *tree, char *name, struct session *ses)
struct option *tree, const char *name, struct session *ses)
{
struct option *opt = NULL;

View File

@ -299,10 +299,10 @@ extern struct option *get_opt_rec(struct option *, const char *);
extern struct option *get_opt_rec_real(struct option *, const char *);
struct option *indirect_option(struct option *);
#ifdef CONFIG_DEBUG
extern union option_value *get_opt_(char *, int, enum option_type, struct option *, char *, struct session *);
extern union option_value *get_opt_(char *, int, enum option_type, struct option *, const char *, struct session *);
#define get_opt(tree, name, ses, type) get_opt_(__FILE__, __LINE__, type, tree, name, ses)
#else
extern union option_value *get_opt_(struct option *, char *, struct session *);
extern union option_value *get_opt_(struct option *, const char *, struct session *);
#define get_opt(tree, name, ses, type) get_opt_(tree, name, ses)
#endif