Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2fa55f2

Browse files
committed
Add missing "static" markers.
Evidently forgotten in commit 11523e8. Per buildfarm member pademelon.
1 parent b47a86f commit 2fa55f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/adminpack/adminpack.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ pg_file_write_v1_1(PG_FUNCTION_ARGS)
177177
*
178178
* This handles the actual work for pg_file_write.
179179
*/
180-
int64
180+
static int64
181181
pg_file_write_internal(text *file, text *data, bool replace)
182182
{
183183
FILE *f;
@@ -286,7 +286,7 @@ pg_file_rename_v1_1(PG_FUNCTION_ARGS)
286286
*
287287
* This handles the actual work for pg_file_rename.
288288
*/
289-
bool
289+
static bool
290290
pg_file_rename_internal(text *file1, text *file2, text *file3)
291291
{
292292
char *fn1,
@@ -480,7 +480,7 @@ pg_logdir_ls_v1_1(PG_FUNCTION_ARGS)
480480
return (pg_logdir_ls_internal(fcinfo));
481481
}
482482

483-
Datum
483+
static Datum
484484
pg_logdir_ls_internal(FunctionCallInfo fcinfo)
485485
{
486486
FuncCallContext *funcctx;

0 commit comments

Comments
 (0)