projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56c7d8d
)
Remove extra comma at end of enum list
author
Magnus Hagander
<
[email protected]
>
Sun, 23 Oct 2016 13:56:07 +0000
(15:56 +0200)
committer
Magnus Hagander
<
[email protected]
>
Sun, 23 Oct 2016 13:57:25 +0000
(15:57 +0200)
C99-specific feature, and wasn't intentional in the first place.
Per buildfarm member mylodon
src/bin/pg_basebackup/walmethods.h
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_basebackup/walmethods.h
b/src/bin/pg_basebackup/walmethods.h
index fa58f812f67fcee8e359e3254dd2f0a0caaecc10..8a006fda7fd1cf5548f2a6b9b69344f9d2fac021 100644
(file)
--- 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;