From 6df280cddef4ab6cf14d7ec135c719e6c7d27040 Mon Sep 17 00:00:00 2001 Message-Id: <6df280cddef4ab6cf14d7ec135c719e6c7d27040.1746118768.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 17 Jun 2024 11:23:18 +0100 Subject: [PATCH] lib.c: Make `search_recursive' be static, as it should be. Organization: Straylight/Edgeware From: Mark Wooding --- lib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- [mdw]