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:
Andres Freund 2016-04-14 18:54:06 -07:00
parent 3ef1f3a3ec
commit ccf893c4bd

View file

@ -23,7 +23,7 @@
*/
typedef enum ObjectAccessType
{
OAT_POST_CREATE,
OAT_POST_CREATE
} ObjectAccessType;
/*