From d522fa71f0457c1007975820c6a032ee9815b54e Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Fri, 2 Sep 2011 12:38:43 +0000 Subject: [PATCH] Add missing 'static' for local function Avoid missing prototype warning. --- lib/commands/toolcontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c index cdfb153c4..859da2bdf 100644 --- a/lib/commands/toolcontext.c +++ b/lib/commands/toolcontext.c @@ -558,7 +558,7 @@ static int _init_tag_configs(struct cmd_context *cmd) return 1; } -struct dm_config_tree *_merge_config_files(struct cmd_context *cmd, struct dm_config_tree *cft) +static struct dm_config_tree *_merge_config_files(struct cmd_context *cmd, struct dm_config_tree *cft) { struct config_tree_list *cfl; -- 2.43.5