1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

[about] const

This commit is contained in:
Witold Filipczyk 2022-02-02 18:53:51 +01:00
parent 141c7c2896
commit a86f992c42

View File

@ -17,8 +17,8 @@
#ifndef CONFIG_SMALL
struct about_page {
char *name;
char *string;
const char *name;
const char *string;
};
static const struct about_page about_pages[] = {
@ -117,7 +117,7 @@ about_protocol_handler(struct connection *conn)
for (; page->name; page++) {
int len;
char *str;
const char *str;
if (strcmp(conn->uri->data, page->name))
continue;