aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2002-09-04 22:51:23 +0000
committerPeter Eisentraut <peter_e@gmx.net>2002-09-04 22:51:23 +0000
commitbe475f92cd43ce0c66246cb488fb29b0a12f5674 (patch)
treece009585a30d2863b53f1974a56f9a545e2362c1 /src
parentf9b7ba287144db3a3895bdcbfbc0d4fd7c54ac96 (diff)
downloadpostgresql-be475f92cd43ce0c66246cb488fb29b0a12f5674.tar.gz
postgresql-be475f92cd43ce0c66246cb488fb29b0a12f5674.zip
Fix compile warning.
Diffstat (limited to 'src')
-rw-r--r--src/pl/plpython/plpython.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c
index 78b23a1a25c..ca739ad74c8 100644
--- a/src/pl/plpython/plpython.c
+++ b/src/pl/plpython/plpython.c
@@ -29,7 +29,7 @@
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/pl/plpython/plpython.c,v 1.21 2002/09/04 20:31:48 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/pl/plpython/plpython.c,v 1.22 2002/09/04 22:51:23 petere Exp $
*
*********************************************************************
*/
@@ -381,7 +381,7 @@ plpython_call_handler(PG_FUNCTION_ARGS)
{
DECLARE_EXC();
Datum retval;
- bool is_trigger;
+ volatile bool is_trigger;
PLyProcedure *volatile proc = NULL;
enter();