summaryrefslogtreecommitdiff
path: root/doc/src/sgml/plhandler.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/plhandler.sgml')
-rw-r--r--doc/src/sgml/plhandler.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plhandler.sgml b/doc/src/sgml/plhandler.sgml
index cc2cac92a2b..5a1e272aa63 100644
--- a/doc/src/sgml/plhandler.sgml
+++ b/doc/src/sgml/plhandler.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/plhandler.sgml,v 1.4 2005/01/05 23:42:03 tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/plhandler.sgml,v 1.5 2005/01/22 22:06:17 momjian Exp $
-->
<chapter id="plhandler">
@@ -121,7 +121,7 @@ plsample_call_handler(PG_FUNCTION_ARGS)
/*
* Called as a trigger procedure
*/
- TriggerData *trigdata = (TriggerData *) fcinfo->context;
+ TriggerData *trigdata = (TriggerData *) fcinfo-&gt;context;
retval = ...
}