From: Robert Haas Date: Tue, 4 Oct 2016 15:49:09 +0000 (-0400) Subject: Remove trailing commas from enums. X-Git-Tag: REL_10_BETA1~1617 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=23843dcb60f941786ab57fec804234bfadd5d17f;p=postgresql.git 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 6f3bd98ebfc008cbd676da777bb0b2376c4c4bfa. --- diff --git a/src/include/pgstat.h b/src/include/pgstat.h index b530c019847..27be5493fd6 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -746,7 +746,7 @@ typedef enum WAIT_EVENT_SYSLOGGER_MAIN, WAIT_EVENT_WAL_RECEIVER_MAIN, WAIT_EVENT_WAL_SENDER_MAIN, - WAIT_EVENT_WAL_WRITER_MAIN, + WAIT_EVENT_WAL_WRITER_MAIN } WaitEventActivity; /* ---------- @@ -764,7 +764,7 @@ typedef enum WAIT_EVENT_SSL_OPEN_SERVER, WAIT_EVENT_WAL_RECEIVER_WAIT_START, WAIT_EVENT_WAL_SENDER_WAIT_WAL, - WAIT_EVENT_WAL_SENDER_WRITE_DATA, + WAIT_EVENT_WAL_SENDER_WRITE_DATA } WaitEventClient; /* ----------