diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-10-04 11:49:09 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-10-04 11:50:34 -0400 |
commit | 23843dcb60f941786ab57fec804234bfadd5d17f (patch) | |
tree | af0ab5c6041e74bcf5f86d0eef40a34db71225db | |
parent | 976a1ce91008944121d0b9d2b84c9644c36f7fbb (diff) | |
download | postgresql-23843dcb60f941786ab57fec804234bfadd5d17f.tar.gz postgresql-23843dcb60f941786ab57fec804234bfadd5d17f.zip |
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.
-rw-r--r-- | src/include/pgstat.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; /* ---------- |