aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_upgrade/task.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/task.c b/src/bin/pg_upgrade/task.c
index 701e5ef331e..8ef5d26eb59 100644
--- a/src/bin/pg_upgrade/task.c
+++ b/src/bin/pg_upgrade/task.c
@@ -79,12 +79,12 @@ typedef struct UpgradeTaskStep
* This struct is a thin wrapper around an array of steps, i.e.,
* UpgradeTaskStep, plus a PQExpBuffer for all the query strings.
*/
-typedef struct UpgradeTask
+struct UpgradeTask
{
UpgradeTaskStep *steps;
int num_steps;
PQExpBuffer queries;
-} UpgradeTask;
+};
/*
* The different states for a parallel slot.