1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00

Make out_to_stderr setting non-static

This commit is contained in:
François Revol 2018-10-05 03:39:08 +02:00
parent 0cc7edfd0b
commit bc0b79f032
2 changed files with 4 additions and 2 deletions

View File

@ -200,8 +200,7 @@ conky::simple_config_setting<bool> out_to_stdout("out_to_console",
true,
#endif
false);
static conky::simple_config_setting<bool> out_to_stderr("out_to_stderr", false,
false);
conky::simple_config_setting<bool> out_to_stderr("out_to_stderr", false, false);
int top_cpu, top_mem, top_time;
#ifdef BUILD_IOSTATS

View File

@ -380,4 +380,7 @@ extern char **argv_copy;
extern const char *getopt_string;
extern const struct option longopts[];
extern conky::simple_config_setting<bool> out_to_stdout;
extern conky::simple_config_setting<bool> out_to_stderr;
#endif /* _conky_h_ */