From ab403a8eb8d19d7f5d049a82bcd874c326add7a4 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Wed, 14 Nov 2012 19:42:55 -0500 Subject: [PATCH] fix warning (missing static) --- termite.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/termite.cc b/termite.cc index b9e0d38..ec20694 100644 --- a/termite.cc +++ b/termite.cc @@ -910,7 +910,8 @@ static bool get_config_color(GKeyFile *config, const char *section, const char * return success; } -maybe get_config_cairo_color(GKeyFile *config, const char *group, const char *key) { +static maybe +get_config_cairo_color(GKeyFile *config, const char *group, const char *key) { maybe ret = {}; if (auto s = get_config_string(config, group, key)) {