Skip to content

Commit 6a560f5

Browse files
committed
Fix assorted inconsistent function declarations.
While gcc doesn't complain if you declare a function "static" and then define it not-static, other compilers do; and in any case the code is highly misleading this way. Add the missing "static" keywords to a couple of recent patches. Per buildfarm member pademelon.
1 parent daee80f commit 6a560f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/pg_upgrade/pg_upgrade.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, const char
289289
}
290290
#endif
291291

292-
void
292+
static void
293293
get_restricted_token(const char *progname)
294294
{
295295
#ifdef WIN32

src/bin/pg_resetxlog/pg_resetxlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, const char
11551155
}
11561156
#endif
11571157

1158-
void
1158+
static void
11591159
get_restricted_token(const char *progname)
11601160
{
11611161
#ifdef WIN32

0 commit comments

Comments
 (0)