From 2e728a7d86c714d845524a0722c2b653feb9d915 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 30 Sep 2018 05:47:36 -0400 Subject: [PATCH] [util] Mark var static From clang -Weverything bot: options.cc:39:3: warning: no previous extern declaration for non-static variable 'supported_font_funcs' [-Wmissing-variable-declarations] --- util/options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/options.cc b/util/options.cc index 0ab16d628..2897ec8f3 100644 --- a/util/options.cc +++ b/util/options.cc @@ -33,7 +33,7 @@ #include #endif -struct supported_font_funcs_t { +static struct supported_font_funcs_t { char name[4]; void (*func) (hb_font_t *); } supported_font_funcs[] =