1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-21 10:42:50 +03:00

Remove trailing commas in enums.

These aren't valid C89. Found thanks to gcc's -Wc90-c99-compat. These
exist in differing places in most supported branches.
This commit is contained in:
Andres Freund
2016-04-14 18:54:06 -07:00
parent 7b16781228
commit 533cd2303a
3 changed files with 3 additions and 3 deletions

View File

@@ -252,7 +252,7 @@ typedef enum
{
RECOVERY_TARGET_ACTION_PAUSE,
RECOVERY_TARGET_ACTION_PROMOTE,
RECOVERY_TARGET_ACTION_SHUTDOWN,
RECOVERY_TARGET_ACTION_SHUTDOWN
} RecoveryTargetAction;
/*