8000 Fix assorted inconsistent function declarations. · rowhit/postgres@b1145ca · GitHub
[go: up one dir, main page]

Skip to content

Commit b1145ca

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 4e3b1e2 commit b1145ca

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
@@ -294,7 +294,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, const char
294294
}
295295
#endif
296296

297-
void
297+
static void
298298
get_restricted_token(const char *progname)
299299
{
300300
#ifdef WIN32

src/bin/pg_resetxlog/pg_resetxlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, const char
11471147
}
11481148
#endif
11491149

1150-
void
1150+
static void
11511151
get_restricted_token(const char *progname)
11521152
{
11531153
#ifdef WIN32

0 commit comments

Comments
 (0)
0