aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:20 +0000
committerAndrew Dunstan <andrew@dunslane.net>2010-05-17 20:46:20 +0000
commitb5285c19eb73608f860fa8ba69a0905413f65b67 (patch)
tree126109ce03fa49f7221a3856d9fa2b0705389c02 /src
parent97d136f9e82650832c9ed9e0ed7a33d4068fb40e (diff)
downloadpostgresql-b5285c19eb73608f860fa8ba69a0905413f65b67.tar.gz
postgresql-b5285c19eb73608f860fa8ba69a0905413f65b67.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 627d7e37005..e709353c246 100644
--- a/src/pl/plperl/plperl.c
+++ b/src/pl/plperl/plperl.c
@@ -33,7 +33,7 @@
* ENHANCEMENTS, OR MODIFICATIONS.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.94.2.16 2010/05/13 16:43:40 adunstan Exp $
+ * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.94.2.17 2010/05/17 20:46:20 adunstan Exp $
*
**********************************************************************/
@@ -568,7 +568,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)
{
@@ -581,7 +581,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")));
}