diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-11-16 01:51:22 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-11-16 01:51:22 +0000 |
commit | f639df0d612628bc56d9c422badeb0893fb5928e (patch) | |
tree | cdd0a1273c2ecd8b5984a8a89d3301340392b5f2 /src/backend/utils/adt | |
parent | d6fda1b0bb7ce35e5a7c8b6cfd36c491055bab7c (diff) | |
download | postgresql-f639df0d612628bc56d9c422badeb0893fb5928e.tar.gz postgresql-f639df0d612628bc56d9c422badeb0893fb5928e.zip |
Small comment spacing improvement.
Diffstat (limited to 'src/backend/utils/adt')
-rw-r--r-- | src/backend/utils/adt/tsvector_op.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/tsvector_op.c b/src/backend/utils/adt/tsvector_op.c index 03e396beaa8..87694236238 100644 --- a/src/backend/utils/adt/tsvector_op.c +++ b/src/backend/utils/adt/tsvector_op.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.8 2007/11/15 23:23:44 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.9 2007/11/16 01:51:22 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -415,7 +415,7 @@ tsvector_concat(PG_FUNCTION_ARGS) if (ptr2->haspos) dataoff += add_pos(in2, ptr2, out, ptr, maxpos) * sizeof(WordEntryPos); } - else /* must have ptr2->haspos */ + else /* must have ptr2->haspos */ { int addlen = add_pos(in2, ptr2, out, ptr, maxpos); |