[nasm:master] outlib: Make ol_add_sym_to being static

nasm-bot for Cyrill Gorcunov gorcunov at gmail.com
Fri Jul 3 01:03:03 PDT 2020


Commit-ID:  d390490089bbecec5dd5e42e1629803352f05416
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=d390490089bbecec5dd5e42e1629803352f05416
Author:     Cyrill Gorcunov <gorcunov at gmail.com>
AuthorDate: Fri, 3 Jul 2020 11:01:36 +0300
Committer:  Cyrill Gorcunov <gorcunov at gmail.com>
CommitDate: Fri, 3 Jul 2020 11:01:40 +0300

outlib: Make ol_add_sym_to being static

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 <gorcunov at gmail.com>


---
 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);


More information about the Nasm-commits mailing list