1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

[config] value was unused

This commit is contained in:
Witold Filipczyk 2022-01-02 18:53:03 +01:00
parent 88d9704e11
commit 016686a71e

View File

@ -1316,10 +1316,8 @@ void
set_option_or_save(const char *str)
{
#define NUMKVPAIRS 16
#define VALSIZE 4096
int i;
char * kvpairs[NUMKVPAIRS];
char value[VALSIZE];
char *kvpairs[NUMKVPAIRS];
char *option_name;
char *option_value;
char *set;
@ -1363,5 +1361,4 @@ set_option_or_save(const char *str)
}
done_string(&tmp);
#undef NUMKVPAIRS
#undef VALSIZE
}