Skip to content
Snippets Groups Projects
Commit b5450859 authored by Andres Freund's avatar Andres Freund
Browse files

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.
parent 6bb42d52
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@
typedef enum ObjectAccessType
{
OAT_POST_CREATE,
OAT_DROP,
OAT_DROP
} ObjectAccessType;
/*
......
......@@ -637,7 +637,7 @@ typedef enum BackendState
STATE_IDLEINTRANSACTION,
STATE_FASTPATH,
STATE_IDLEINTRANSACTION_ABORTED,
STATE_DISABLED,
STATE_DISABLED
} BackendState;
/* ----------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment