Remove trailing commas from enums.
authorRobert Haas <rhaas@postgresql.org>
Tue, 4 Oct 2016 15:49:09 +0000 (11:49 -0400)
committerRobert Haas <rhaas@postgresql.org>
Tue, 4 Oct 2016 15:50:34 +0000 (11:50 -0400)
Buildfarm member mylodon doesn't like them.  Actually, I don't like
them either, but I failed to notice these before pushing commit
6f3bd98ebfc008cbd676da777bb0b2376c4c4bfa.

src/include/pgstat.h

index b530c0198477387b276e4e10f352f31771d840e6..27be5493fd6232db314a46c94d0d6d594ac19a49 100644 (file)
@@ -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;
 
 /* ----------