From: Magnus Hagander Date: Sun, 23 Oct 2016 13:56:07 +0000 (+0200) Subject: Remove extra comma at end of enum list X-Git-Tag: REL_10_BETA1~1524 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d97a59a4c5597af5f53869a5a1c753893752c66b;p=postgresql Remove extra comma at end of enum list C99-specific feature, and wasn't intentional in the first place. Per buildfarm member mylodon --- diff --git a/src/bin/pg_basebackup/walmethods.h b/src/bin/pg_basebackup/walmethods.h index fa58f812f6..8a006fda7f 100644 --- a/src/bin/pg_basebackup/walmethods.h +++ b/src/bin/pg_basebackup/walmethods.h @@ -16,7 +16,7 @@ typedef enum { CLOSE_NORMAL, CLOSE_UNLINK, - CLOSE_NO_RENAME, + CLOSE_NO_RENAME } WalCloseMethod; typedef struct WalWriteMethod WalWriteMethod;