diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-10-15 20:37:20 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-10-15 20:37:20 -0400 |
commit | 0ab7ca98a16f9e4954f47c7f180e0760b4f355ec (patch) | |
tree | 482077c0d9009d7ae82d1eb418142c3b66063d9c /src | |
parent | a106236d8287315a8b7d24b38cb283817fd4d391 (diff) | |
download | postgresql-0ab7ca98a16f9e4954f47c7f180e0760b4f355ec.tar.gz postgresql-0ab7ca98a16f9e4954f47c7f180e0760b4f355ec.zip |
pg_upgrade: remove C99 compiler req. from commit 3c0471b5fd
This commit required support for inline variable definition, which is
not a requirement.
RELEASE NOTE AUTHOR: the author of commit 3c0471b5fd
(pg_upgrade/tablespaces) was Justin Pryzby, not me.
Reported-by: Andres Freund
Discussion: https://postgr.es/m/20201016001959.h24fkywfubkv2pc5@alap3.anarazel.de
Backpatch-through: 9.5
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c index d31723a634f..de607c67f42 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -540,11 +540,12 @@ create_script_for_cluster_analyze(char **analyze_script_file_name) static void check_for_new_tablespace_dir(ClusterInfo *new_cluster) { + int tblnum; char new_tablespace_dir[MAXPGPATH]; prep_status("Checking for new cluster tablespace directories"); - for (int tblnum = 0; tblnum < os_info.num_old_tablespaces; tblnum++) + for (tblnum = 0; tblnum < os_info.num_old_tablespaces; tblnum++) { struct stat statbuf; |