summaryrefslogtreecommitdiff
path: root/src/pl/plperl/plperl.c
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:40 +0000
committerAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:40 +0000
commit64010b3aac9088ac40bd40024d78ebaec6e5acef (patch)
tree5da431c73da03ed00f99863af3cf6057f1381343 /src/pl/plperl/plperl.c
parentc261e08ef33e0d10c5cfed36d0916c5627a5fad9 (diff)
> Follow up a visit from the style police.
Diffstat (limited to 'src/pl/plperl/plperl.c')
-rw-r--r--src/pl/plperl/plperl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plperl/plperl.c b/src/pl/plperl/plperl.c
index 73663c5aa2c..44189a21bc8 100644
--- a/src/pl/plperl/plperl.c
+++ b/src/pl/plperl/plperl.c
@@ -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")));
}
/*