From 23843dcb60f941786ab57fec804234bfadd5d17f Mon Sep 17 00:00:00 2001 From: Robert Haas <rhaas@postgresql.org> Date: Tue, 4 Oct 2016 11:49:09 -0400 Subject: [PATCH] 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. --- src/include/pgstat.h | 4 ++-- 1 file 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; /* ---------- -- GitLab