From c1907f0cc49e38df9853b7547c9afce5204e4784 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 17 May 2014 17:57:53 -0400 Subject: Fix a bunch of functions that were declared static then defined not-static. Per testing with a compiler that whines about this. --- src/bin/pg_ctl/pg_ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin/pg_ctl/pg_ctl.c') diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 899f4323b27..9a6ade935f8 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -399,7 +399,7 @@ readfile(const char *path) /* * Free memory allocated for optlines through readfile() */ -void +static void free_readfile(char **optlines) { char *curr_line = NULL; -- cgit v1.2.3