aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-03-06 20:14:01 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2011-03-06 20:14:01 -0500
commitdfe18f18d262df731378cbf38a4136f08ca119a5 (patch)
tree959e3c4334d70e2b9b7ddeb8f852f1adb048e4a8
parent775464e8450677602833b1d11b919838e7b2b29a (diff)
downloadpostgresql-dfe18f18d262df731378cbf38a4136f08ca119a5.tar.gz
postgresql-dfe18f18d262df731378cbf38a4136f08ca119a5.zip
Fix a couple more missing "static" markers.
-rw-r--r--contrib/pg_upgrade/check.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c
index 2e6400e4cc5..9ef63ec2c9d 100644
--- a/contrib/pg_upgrade/check.c
+++ b/contrib/pg_upgrade/check.c
@@ -452,7 +452,7 @@ create_script_for_old_cluster_deletion(
* by value. The schema dumps the CREATE TYPE PASSEDBYVALUE setting so
* it must match for the old and new servers.
*/
-void
+static void
check_for_isn_and_int8_passing_mismatch(ClusterInfo *cluster)
{
int dbnum;
@@ -546,7 +546,7 @@ check_for_isn_and_int8_passing_mismatch(ClusterInfo *cluster)
* not preserved, and hence these data types cannot be used in user
* tables upgraded by pg_upgrade.
*/
-void
+static void
check_for_reg_data_type_usage(ClusterInfo *cluster)
{
int dbnum;