From: Nathan Bossart Date: Mon, 16 Sep 2024 21:33:50 +0000 (-0500) Subject: Fix redefinition of typedef. X-Git-Tag: REL_18_BETA1~1905 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=1bbf1e2f1a077905037272cd4767e952f34c02b3;p=postgresql.git Fix redefinition of typedef. Per buildfarm members sifaka and longfin, clang with -Wtypedef-redefinition warns of a duplicate typedef unless building with C11. Oversight in commit 40e2e5e92b. --- 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.