Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8c71752

Browse files
committed
Remove unnecessary comma in enum definition ... some C compilers don't
like that. Per report from J6M.
1 parent f7d2265 commit 8c71752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/adt/tsquery.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery.c,v 1.14 2008/01/01 19:45:53 momjian Exp $
10+
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery.c,v 1.15 2008/01/08 01:04:08 tgl Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -105,7 +105,7 @@ typedef enum
105105
PT_VAL = 2,
106106
PT_OPR = 3,
107107
PT_OPEN = 4,
108-
PT_CLOSE = 5,
108+
PT_CLOSE = 5
109109
} ts_tokentype;
110110

111111
/*

0 commit comments

Comments
 (0)