mirror of
https://github.com/postgres/postgres.git
synced 2026-04-24 23:57:18 -04:00
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.
This commit is contained in:
parent
3ef1f3a3ec
commit
ccf893c4bd
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@
|
|||
*/
|
||||
typedef enum ObjectAccessType
|
||||
{
|
||||
OAT_POST_CREATE,
|
||||
OAT_POST_CREATE
|
||||
} ObjectAccessType;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue