mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01: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
6bb42d5204
commit
b54508596d
|
|
@ -27,7 +27,7 @@
|
||||||
typedef enum ObjectAccessType
|
typedef enum ObjectAccessType
|
||||||
{
|
{
|
||||||
OAT_POST_CREATE,
|
OAT_POST_CREATE,
|
||||||
OAT_DROP,
|
OAT_DROP
|
||||||
} ObjectAccessType;
|
} ObjectAccessType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -637,7 +637,7 @@ typedef enum BackendState
|
||||||
STATE_IDLEINTRANSACTION,
|
STATE_IDLEINTRANSACTION,
|
||||||
STATE_FASTPATH,
|
STATE_FASTPATH,
|
||||||
STATE_IDLEINTRANSACTION_ABORTED,
|
STATE_IDLEINTRANSACTION_ABORTED,
|
||||||
STATE_DISABLED,
|
STATE_DISABLED
|
||||||
} BackendState;
|
} BackendState;
|
||||||
|
|
||||||
/* ----------
|
/* ----------
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user