> Follow up a visit from the style police.

This commit is contained in:
Andrew Dunstan 2010-05-17 20:46:40 +00:00
parent c261e08ef3
commit 64010b3aac

View File

@ -1,7 +1,7 @@
/**********************************************************************
* plperl.c - perl as a procedural language for PostgreSQL
*
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.136.2.9 2010/05/13 16:42:51 adunstan Exp $
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.136.2.10 2010/05/17 20:46:40 adunstan Exp $
*
**********************************************************************/
@ -539,7 +539,7 @@ plperl_safe_init(void)
if (SvTRUE(ERRSV))
ereport(ERROR,
(errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))),
errcontext("While executing PLC_TRUSTED.")));
errcontext("while executing PLC_TRUSTED")));
if (GetDatabaseEncoding() == PG_UTF8)
{
@ -552,7 +552,7 @@ plperl_safe_init(void)
if (SvTRUE(ERRSV))
ereport(ERROR,
(errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))),
errcontext("While executing utf8fix.")));
errcontext("while executing utf8fix")));
}
/*