summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1996-08-13 01:36:50 +0000
committerMarc G. Fournier1996-08-13 01:36:50 +0000
commita721c91adebeb566dc1880630aa1627d4bb4c2aa (patch)
treedcad9fa5e95522366fb5bd29d307a999a9499313
parent9305fc748c21aa12e9360be33c086c58e160ad11 (diff)
More code cleanups
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
-rw-r--r--src/backend/utils/portal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/portal.h b/src/backend/utils/portal.h
index 4e3e42c9146..14c29c265ae 100644
--- a/src/backend/utils/portal.h
+++ b/src/backend/utils/portal.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: portal.h,v 1.1.1.1 1996/07/09 06:22:02 scrappy Exp $
+ * $Id: portal.h,v 1.2 1996/08/13 01:36:50 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -51,7 +51,7 @@ struct PortalD {
QueryDesc *queryDesc;
TupleDesc attinfo;
EState *state;
- void (*cleanup)();
+ void (*cleanup)(Portal);
};
/*