aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-04-08 10:54:54 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2018-04-08 10:54:54 -0400
commit2fa55f26a0c56f40b71f96859280dc5d11751514 (patch)
treeeb8f66331522c78598fd9945480e1b61a41c2d92
parentb47a86f5008f2674af20dd00bc233e7b74e01bba (diff)
downloadpostgresql-2fa55f26a0c56f40b71f96859280dc5d11751514.tar.gz
postgresql-2fa55f26a0c56f40b71f96859280dc5d11751514.zip
Add missing "static" markers.
Evidently forgotten in commit 11523e860. Per buildfarm member pademelon.
-rw-r--r--contrib/adminpack/adminpack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/adminpack/adminpack.c b/contrib/adminpack/adminpack.c
index fc513d628e8..2ce337e7b5a 100644
--- a/contrib/adminpack/adminpack.c
+++ b/contrib/adminpack/adminpack.c
@@ -177,7 +177,7 @@ pg_file_write_v1_1(PG_FUNCTION_ARGS)
*
* This handles the actual work for pg_file_write.
*/
-int64
+static int64
pg_file_write_internal(text *file, text *data, bool replace)
{
FILE *f;
@@ -286,7 +286,7 @@ pg_file_rename_v1_1(PG_FUNCTION_ARGS)
*
* This handles the actual work for pg_file_rename.
*/
-bool
+static bool
pg_file_rename_internal(text *file1, text *file2, text *file3)
{
char *fn1,
@@ -480,7 +480,7 @@ pg_logdir_ls_v1_1(PG_FUNCTION_ARGS)
return (pg_logdir_ls_internal(fcinfo));
}
-Datum
+static Datum
pg_logdir_ls_internal(FunctionCallInfo fcinfo)
{
FuncCallContext *funcctx;