1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

Remove trailing commas from enums.

Buildfarm member mylodon doesn't like them.  Actually, I don't like
them either, but I failed to notice these before pushing commit
6f3bd98ebf.
This commit is contained in:
Robert Haas
2016-10-04 11:49:09 -04:00
parent 976a1ce910
commit 23843dcb60

View File

@ -746,7 +746,7 @@ typedef enum
WAIT_EVENT_SYSLOGGER_MAIN, WAIT_EVENT_SYSLOGGER_MAIN,
WAIT_EVENT_WAL_RECEIVER_MAIN, WAIT_EVENT_WAL_RECEIVER_MAIN,
WAIT_EVENT_WAL_SENDER_MAIN, WAIT_EVENT_WAL_SENDER_MAIN,
WAIT_EVENT_WAL_WRITER_MAIN, WAIT_EVENT_WAL_WRITER_MAIN
} WaitEventActivity; } WaitEventActivity;
/* ---------- /* ----------
@ -764,7 +764,7 @@ typedef enum
WAIT_EVENT_SSL_OPEN_SERVER, WAIT_EVENT_SSL_OPEN_SERVER,
WAIT_EVENT_WAL_RECEIVER_WAIT_START, WAIT_EVENT_WAL_RECEIVER_WAIT_START,
WAIT_EVENT_WAL_SENDER_WAIT_WAL, WAIT_EVENT_WAL_SENDER_WAIT_WAL,
WAIT_EVENT_WAL_SENDER_WRITE_DATA, WAIT_EVENT_WAL_SENDER_WRITE_DATA
} WaitEventClient; } WaitEventClient;
/* ---------- /* ----------