pgsql: Remove trailing commas in enums. - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Remove trailing commas in enums.
Date
Msg-id E1aqtUv-0005mQ-4c@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/533cd2303aa6558721e76295fd1ffb05211764f9

Modified Files
--------------
src/backend/executor/execIndexing.c | 2 +-
src/include/access/xlog_internal.h  | 2 +-
src/include/pgstat.h                | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)


pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: pgsql: Remove trailing commas in enums.
Next
From: Andres Freund
Date:
Subject: pgsql: Make init_spin_delay() C89 compliant #2.