From 22ac37aa00887c5b32430e2f51e4146cc7552ca5 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 28 Aug 2018 12:40:25 +0900 Subject: [PATCH] string-table: do not ignore 'scope' argument --- src/basic/string-table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/string-table.h b/src/basic/string-table.h index 9bd7879355..228c12ad00 100644 --- a/src/basic/string-table.h +++ b/src/basic/string-table.h @@ -58,7 +58,7 @@ ssize_t string_table_lookup(const char * const *table, size_t len, const char *k } #define _DEFINE_STRING_TABLE_LOOKUP_FROM_STRING_FALLBACK(name,type,max,scope) \ - type name##_from_string(const char *s) { \ + scope type name##_from_string(const char *s) { \ type i; \ unsigned u = 0; \ if (!s) \