Commit 8f0ab229 authored by Tom Lane's avatar Tom Lane

Add missing newlines in WPARSER_TRACE output.

parent 75c57381
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tsearch/wparser_def.c,v 1.28 2010/03/13 00:41:58 momjian Exp $ * $PostgreSQL: pgsql/src/backend/tsearch/wparser_def.c,v 1.29 2010/04/26 17:10:18 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -387,7 +387,7 @@ TParserClose(TParser *prs) ...@@ -387,7 +387,7 @@ TParserClose(TParser *prs)
#endif #endif
#ifdef WPARSER_TRACE #ifdef WPARSER_TRACE
fprintf(stderr, "closing parser"); fprintf(stderr, "closing parser\n");
#endif #endif
pfree(prs); pfree(prs);
} }
...@@ -407,7 +407,7 @@ TParserCopyClose(TParser *prs) ...@@ -407,7 +407,7 @@ TParserCopyClose(TParser *prs)
} }
#ifdef WPARSER_TRACE #ifdef WPARSER_TRACE
fprintf(stderr, "closing parser copy"); fprintf(stderr, "closing parser copy\n");
#endif #endif
pfree(prs); pfree(prs);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment