1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

[osdep] const in check_more_envs

This commit is contained in:
Witold Filipczyk 2022-02-17 19:51:11 +01:00
parent ea847b8436
commit 2ad21036bd

View File

@ -289,12 +289,12 @@ is_gnuscreen(void)
static int
check_more_envs(void)
{
char *envs[] = { "WINDOWID",
const char *envs[] = { "WINDOWID",
"KONSOLE_DCOP_SESSION",
"GNOME_TERMINAL_SERVICE",
NULL
};
char **v;
const char **v;
for (v = envs; *v; ++v)
{