Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1bbf1e2

Browse files
Fix redefinition of typedef.
Per buildfarm members sifaka and longfin, clang with-Wtypedef-redefinition warns of a duplicate typedef unless buildingwith C11.Oversight in commit40e2e5e.
1 parentc880cf2 commit1bbf1e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/bin/pg_upgrade/task.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ typedef struct UpgradeTaskStep
7979
* This struct is a thin wrapper around an array of steps, i.e.,
8080
* UpgradeTaskStep, plus a PQExpBuffer for all the query strings.
8181
*/
82-
typedefstructUpgradeTask
82+
structUpgradeTask
8383
{
8484
UpgradeTaskStep*steps;
8585
intnum_steps;
8686
PQExpBufferqueries;
87-
}UpgradeTask;
87+
};
8888

8989
/*
9090
* The different states for a parallel slot.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp