mirror of
https://github.com/postgres/postgres.git
synced 2026-03-03 13:51:00 -05:00
Add missing newlines in WPARSER_TRACE output.
This commit is contained in:
parent
75c5738177
commit
8f0ab2298f
1 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*
|
||||
* 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
|
||||
|
||||
#ifdef WPARSER_TRACE
|
||||
fprintf(stderr, "closing parser");
|
||||
fprintf(stderr, "closing parser\n");
|
||||
#endif
|
||||
pfree(prs);
|
||||
}
|
||||
|
|
@ -407,7 +407,7 @@ TParserCopyClose(TParser *prs)
|
|||
}
|
||||
|
||||
#ifdef WPARSER_TRACE
|
||||
fprintf(stderr, "closing parser copy");
|
||||
fprintf(stderr, "closing parser copy\n");
|
||||
#endif
|
||||
pfree(prs);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue