projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c14e345
)
Remove unnecessary comma in enum definition ... some C compilers don't
author
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 8 Jan 2008 01:04:08 +0000
(
01:04
+0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 8 Jan 2008 01:04:08 +0000
(
01:04
+0000)
like that. Per report from J6M.
src/backend/utils/adt/tsquery.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/tsquery.c
b/src/backend/utils/adt/tsquery.c
index 33e3ea375d79402965091d377eee06f701fff880..7f71207736bca7bc0f27c8d4f2dac9745b6764b6 100644
(file)
--- a/
src/backend/utils/adt/tsquery.c
+++ b/
src/backend/utils/adt/tsquery.c
@@
-105,7
+105,7
@@
typedef enum
PT_VAL = 2,
PT_OPR = 3,
PT_OPEN = 4,
- PT_CLOSE = 5
,
+ PT_CLOSE = 5
} ts_tokentype;
/*