From: Mark Wooding Date: Mon, 17 Jun 2024 10:23:18 +0000 (+0100) Subject: lib.c: Make `search_recursive' be static, as it should be. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/runlisp/commitdiff_plain/6df280cddef4ab6cf14d7ec135c719e6c7d27040 lib.c: Make `search_recursive' be static, as it should be. --- diff --git a/lib.c b/lib.c index c844997..d369e7d 100644 --- a/lib.c +++ b/lib.c @@ -953,9 +953,9 @@ static void set_config_section_parents(struct config *conf, * Inheritance cycles and ambiguous inheritance are diagnosed as fatal * errors. */ -struct config_var *search_recursive(struct config *conf, - struct config_section *sect, - const char *name, size_t sz) +static struct config_var *search_recursive(struct config *conf, + struct config_section *sect, + const char *name, size_t sz) { struct config_cache_entry *cache; struct treap_path path;