summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:28 +0000
committerAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:28 +0000
commitde9249470410bc23992cc6e7654568c946283567 (patch)
tree91d93f8c17eb1874a491aed41f837d0cb7b22dae /src
parent23336cf49c629c90cc8fc1d6303bd1a0b05da754 (diff)
> Follow up a visit from the style police.
Diffstat (limited to 'src')
-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 a8bf48302dc..525acac981e 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.123.2.13 2010/05/13 16:43:14 adunstan Exp $
+ * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.123.2.14 2010/05/17 20:46:28 adunstan Exp $
*
**********************************************************************/
@@ -542,7 +542,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)
{
@@ -555,7 +555,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")));
}
/*