aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:53 +0000
committerAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:53 +0000
commit58ae67ed2e151c3eb20627d1343c6e7f97ecdbd7 (patch)
tree0a07639020d7f3293e958b0dadd50ed35943e9bb /src
parentdfeaceb2df584beffd9cb65b247886eaf1f8d820 (diff)
downloadpostgresql-58ae67ed2e151c3eb20627d1343c6e7f97ecdbd7.tar.gz
postgresql-58ae67ed2e151c3eb20627d1343c6e7f97ecdbd7.zip
> 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 73991a6569e..456154543e4 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.150.2.7 2010/05/13 16:40:36 adunstan Exp $
+ * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.150.2.8 2010/05/17 20:46:53 adunstan Exp $
*
**********************************************************************/
@@ -554,7 +554,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)
{
@@ -567,7 +567,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")));
}
/*