aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-03-23 11:58:11 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-03-23 11:58:11 -0400
commit73561013e5aa44a1669b2cb4351f5e2b29485efb (patch)
treed0e53fb1188d25b6ded5032c6c73d2e39761cc38 /src
parent128e6ee01dc9a8b7b0d3d3c8edc594ca9e51f993 (diff)
downloadpostgresql-73561013e5aa44a1669b2cb4351f5e2b29485efb.tar.gz
postgresql-73561013e5aa44a1669b2cb4351f5e2b29485efb.zip
Remove trailing comma from enum definition
Author: Petr Jelinek <petr.jelinek@2ndquadrant.com>
Diffstat (limited to 'src')
-rw-r--r--src/include/replication/walreceiver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/replication/walreceiver.h b/src/include/replication/walreceiver.h
index fb55c30fa19..cc31bc6a34e 100644
--- a/src/include/replication/walreceiver.h
+++ b/src/include/replication/walreceiver.h
@@ -175,7 +175,7 @@ typedef enum
WALRCV_OK_TUPLES, /* Query returned tuples. */
WALRCV_OK_COPY_IN, /* Query started COPY FROM. */
WALRCV_OK_COPY_OUT, /* Query started COPY TO. */
- WALRCV_OK_COPY_BOTH, /* Query started COPY BOTH replication protocol. */
+ WALRCV_OK_COPY_BOTH /* Query started COPY BOTH replication protocol. */
} WalRcvExecStatus;
/*