Remove unnecessary comma in enum definition ... some C compilers don't
authorTom Lane
Tue, 8 Jan 2008 01:04:08 +0000 (01:04 +0000)
committerTom Lane
Tue, 8 Jan 2008 01:04:08 +0000 (01:04 +0000)
like that.  Per report from J6M.

src/backend/utils/adt/tsquery.c

index 2479a4261d2700e1cf3737b6906e0f583d4554c7..41863fb5db54162d9ee213e2c6c47dc8d75aa9db 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * 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_OPR = 3,
    PT_OPEN = 4,
-   PT_CLOSE = 5,
+   PT_CLOSE = 5
 } ts_tokentype;
 
 /*