1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05: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) set_option_or_save(const char *str)
{ {
#define NUMKVPAIRS 16 #define NUMKVPAIRS 16
#define VALSIZE 4096
int i; int i;
char * kvpairs[NUMKVPAIRS]; char *kvpairs[NUMKVPAIRS];
char value[VALSIZE];
char *option_name; char *option_name;
char *option_value; char *option_value;
char *set; char *set;
@ -1363,5 +1361,4 @@ set_option_or_save(const char *str)
} }
done_string(&tmp); done_string(&tmp);
#undef NUMKVPAIRS #undef NUMKVPAIRS
#undef VALSIZE
} }