From 593f469a048f1479d19579a06ec32cce9ddfa190 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Thu, 14 Apr 2016 18:54:06 -0700 Subject: 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. --- src/include/access/xlog_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/access/xlog_internal.h') 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; /* -- cgit v1.2.3