1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00

Remove unnecessary comma in enum definition ... some C compilers don't

like that.  Per report from J6M.
This commit is contained in:
Tom Lane
2008-01-08 01:04:08 +00:00
parent f7d22658e6
commit 8c71752ae4

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery.c,v 1.14 2008/01/01 19:45:53 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/tsquery.c,v 1.15 2008/01/08 01:04:08 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -105,7 +105,7 @@ typedef enum
PT_VAL = 2, PT_VAL = 2,
PT_OPR = 3, PT_OPR = 3,
PT_OPEN = 4, PT_OPEN = 4,
PT_CLOSE = 5, PT_CLOSE = 5
} ts_tokentype; } ts_tokentype;
/* /*