1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-05-18 00:48:57 -04:00

[config] const in print_full_help_outer

This commit is contained in:
Witold Filipczyk 2022-02-05 15:51:27 +01:00
parent 30dcb4d881
commit bca78f977f

View File

@ -494,10 +494,10 @@ static void print_option_desc(const char *desc)
done_string(&wrapped); done_string(&wrapped);
} }
static void print_full_help_outer(struct option *tree, char *path); static void print_full_help_outer(struct option *tree, const char *path);
static void static void
print_full_help_inner(struct option *tree, char *path, print_full_help_inner(struct option *tree, const char *path,
int trees) int trees)
{ {
struct option *option; struct option *option;
@ -630,7 +630,7 @@ print_full_help_inner(struct option *tree, char *path,
} }
static void static void
print_full_help_outer(struct option *tree, char *path) print_full_help_outer(struct option *tree, const char *path)
{ {
print_full_help_inner(tree, path, 0); print_full_help_inner(tree, path, 0);
print_full_help_inner(tree, path, 1); print_full_help_inner(tree, path, 1);