From 7536fa4647061d65f13d9767f02b7b155a30f119 Mon Sep 17 00:00:00 2001 From: Al Barrentine Date: Tue, 2 Feb 2016 00:53:13 -0500 Subject: [PATCH] [fix] static inline --- src/geodb_builder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geodb_builder.c b/src/geodb_builder.c index 154d6557..327ce812 100644 --- a/src/geodb_builder.c +++ b/src/geodb_builder.c @@ -434,7 +434,7 @@ bool geodb_builder_add_name(geodb_builder_t *self, char *key, bool is_canonical, /* Get a feature string's id from the trie or add it and return the next id */ -inline uint32_t geodb_builder_get_feature_id(geodb_builder_t *self, char *key) { +static inline uint32_t geodb_builder_get_feature_id(geodb_builder_t *self, char *key) { uint32_t feature_id; if (!trie_get_data(self->features, key, &feature_id)) {