aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/xlog_internal.h
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2016-04-14 18:54:06 -0700
committerAndres Freund <andres@anarazel.de>2016-04-14 19:25:41 -0700
commit593f469a048f1479d19579a06ec32cce9ddfa190 (patch)
tree7a765edaad315164cc22f2bae714b2755f977a27 /src/include/access/xlog_internal.h
parente7a456174b2eca37b141952b6f7ef4254887f819 (diff)
downloadpostgresql-593f469a048f1479d19579a06ec32cce9ddfa190.tar.gz
postgresql-593f469a048f1479d19579a06ec32cce9ddfa190.zip
Remove trailing commas in enums.
These aren't valid C89. Found thanks to gcc's -Wc90-c99-compat. These exist in differing places in most supported branches.
Diffstat (limited to 'src/include/access/xlog_internal.h')
-rw-r--r--src/include/access/xlog_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h
index 5096c170dd2..e9bf51646a2 100644
--- a/src/include/access/xlog_internal.h
+++ b/src/include/access/xlog_internal.h
@@ -252,7 +252,7 @@ typedef enum
{
RECOVERY_TARGET_ACTION_PAUSE,
RECOVERY_TARGET_ACTION_PROMOTE,
- RECOVERY_TARGET_ACTION_SHUTDOWN,
+ RECOVERY_TARGET_ACTION_SHUTDOWN
} RecoveryTargetAction;
/*