From d390490089bbecec5dd5e42e1629803352f05416 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Fri, 3 Jul 2020 11:01:36 +0300 Subject: outlib: Make ol_add_sym_to being static MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise getting building problem > output/outlib.c:197:6: error: no previous prototype for ‘ol_add_sym_to’ [-Werror=missing-prototypes] > 197 | void ol_add_sym_to(struct ol_symlist *syml, struct ol_symhead *head, > | ^~~~~~~~~~~~~ Signed-off-by: Cyrill Gorcunov --- output/outlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outlib.c b/output/outlib.c index fa7db15e..54c87530 100644 --- a/output/outlib.c +++ b/output/outlib.c @@ -194,8 +194,8 @@ int32_t _ol_new_subsection(struct ol_sect *sect) * Insert a symbol into a list; need to use upcasting using container_of() * to walk the list later. */ -void ol_add_sym_to(struct ol_symlist *syml, struct ol_symhead *head, - uint64_t offset) +static void ol_add_sym_to(struct ol_symlist *syml, struct ol_symhead *head, + uint64_t offset) { syml->tree.key = offset; head->tree = rb_insert(head->tree, &syml->tree); -- cgit v1.2.1