1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Add missing newlines in WPARSER_TRACE output.

This commit is contained in:
Tom Lane
2010-04-26 17:10:18 +00:00
parent 75c5738177
commit 8f0ab2298f

View File

@ -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)
#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)
} }
#ifdef WPARSER_TRACE #ifdef WPARSER_TRACE
fprintf(stderr, "closing parser copy"); fprintf(stderr, "closing parser copy\n");
#endif #endif
pfree(prs); pfree(prs);
} }