fix warning (missing static)
This commit is contained in:
parent
953017068d
commit
ab403a8eb8
|
@ -910,7 +910,8 @@ static bool get_config_color(GKeyFile *config, const char *section, const char *
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
maybe<cairo_pattern_t *> get_config_cairo_color(GKeyFile *config, const char *group, const char *key) {
|
static maybe<cairo_pattern_t *>
|
||||||
|
get_config_cairo_color(GKeyFile *config, const char *group, const char *key) {
|
||||||
maybe<cairo_pattern_t *> ret = {};
|
maybe<cairo_pattern_t *> ret = {};
|
||||||
|
|
||||||
if (auto s = get_config_string(config, group, key)) {
|
if (auto s = get_config_string(config, group, key)) {
|
||||||
|
|
Loading…
Reference in New Issue