From d97a59a4c5597af5f53869a5a1c753893752c66b Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 23 Oct 2016 15:56:07 +0200 Subject: [PATCH] Remove extra comma at end of enum list C99-specific feature, and wasn't intentional in the first place. Per buildfarm member mylodon --- src/bin/pg_basebackup/walmethods.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_basebackup/walmethods.h b/src/bin/pg_basebackup/walmethods.h index fa58f812f67..8a006fda7fd 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; -- 2.39.5