summaryrefslogtreecommitdiff
path: root/util/options.cc
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2018-09-30 05:47:36 -0400
committerBehdad Esfahbod <behdad@behdad.org>2018-09-30 06:08:11 -0400
commit2e728a7d86c714d845524a0722c2b653feb9d915 (patch)
treef1d8632e5adbad389c46619ed8dcddd502a37abc /util/options.cc
parente910a1aef4b2413c627240fc06d2a5696b24747a (diff)
downloadharfbuzz-2e728a7d86c714d845524a0722c2b653feb9d915.tar.gz
[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]
Diffstat (limited to 'util/options.cc')
-rw-r--r--util/options.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/options.cc b/util/options.cc
index 0ab16d62..2897ec8f 100644
--- a/util/options.cc
+++ b/util/options.cc
@@ -33,7 +33,7 @@
#include <hb-ot.h>
#endif
-struct supported_font_funcs_t {
+static struct supported_font_funcs_t {
char name[4];
void (*func) (hb_font_t *);
} supported_font_funcs[] =