1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

Remove extra comma at end of enum list

C99-specific feature, and wasn't intentional in the first place.

Per buildfarm member mylodon
This commit is contained in:
Magnus Hagander
2016-10-23 15:56:07 +02:00
parent 56c7d8d455
commit d97a59a4c5

View File

@@ -16,7 +16,7 @@ typedef enum
{ {
CLOSE_NORMAL, CLOSE_NORMAL,
CLOSE_UNLINK, CLOSE_UNLINK,
CLOSE_NO_RENAME, CLOSE_NO_RENAME
} WalCloseMethod; } WalCloseMethod;
typedef struct WalWriteMethod WalWriteMethod; typedef struct WalWriteMethod WalWriteMethod;