mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +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:
@ -552,7 +552,7 @@ typedef enum
|
||||
XLOG_FROM_ANY = 0, /* request to read WAL from any source */
|
||||
XLOG_FROM_ARCHIVE, /* restored using restore_command */
|
||||
XLOG_FROM_PG_XLOG, /* existing file in pg_xlog */
|
||||
XLOG_FROM_STREAM, /* streamed from master */
|
||||
XLOG_FROM_STREAM /* streamed from master */
|
||||
} XLogSource;
|
||||
|
||||
/* human-readable names for XLogSources, for debugging output */
|
||||
|
Reference in New Issue
Block a user