pgsql: Prevent redeclaration of typedef TocEntry.

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Prevent redeclaration of typedef TocEntry.
Date: 2025-04-04 20:56:43
Message-ID: E1u0o5j-002h4U-0h@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Prevent redeclaration of typedef TocEntry.

Commit 9c02e3a986 added a forward declaration for this typedef that
caused redeclarations, which is not valid in C99. To fix, add some
preprocessor guards to avoid a redefinition, as is done elsewhere
(e.g., commit 382092a0cd).

Per buildfarm.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8ec0aaeae09482925d2d15ce4a91f6953bdb1566

Modified Files
--------------
src/bin/pg_dump/pg_backup.h | 3 +++
src/bin/pg_dump/pg_backup_archiver.h | 3 +++
2 files changed, 6 insertions(+)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2025-04-04 21:08:15 pgsql: Fix a couple of error messages and tests for them
Previous Message Andrew Dunstan 2025-04-04 20:43:21 Re: pgsql: Add more TAP tests for pg_dumpall