diff options
author | Magnus Hagander <magnus@hagander.net> | 2016-10-23 15:56:07 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2016-10-23 15:57:25 +0200 |
commit | d97a59a4c5597af5f53869a5a1c753893752c66b (patch) | |
tree | f0980f3f41885367dee56f9414a193b33270d7ec /src | |
parent | 56c7d8d4552180fd66fe48423bb2a9bb767c2d87 (diff) | |
download | postgresql-d97a59a4c5597af5f53869a5a1c753893752c66b.tar.gz postgresql-d97a59a4c5597af5f53869a5a1c753893752c66b.zip |
Remove extra comma at end of enum list
C99-specific feature, and wasn't intentional in the first place.
Per buildfarm member mylodon
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/walmethods.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |