diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-01-04 00:14:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-01-04 00:14:55 +0000 |
commit | 3d5c2692e704532c53b3c57b373912d817e29304 (patch) | |
tree | 99c52d0fb89d533027237e3b18697c71a3fd5b0f | |
parent | 8265a1d8163656cbccc8c69b22c65138e30022c0 (diff) |
Remove trailing semicolons from macro initializations in plpython.
Problem report on True64 Unix by Nikola Milutinovic.
]
-rw-r--r-- | src/pl/plpython/plpython.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index e2f904c87f3..332927013a5 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.41 2003/09/16 01:07:51 tgl Exp $ + * $Header: /cvsroot/pgsql/src/pl/plpython/plpython.c,v 1.41.2.1 2004/01/04 00:14:55 momjian Exp $ * ********************************************************************* */ @@ -149,7 +149,7 @@ typedef struct PLyProcedure */ typedef struct PLyPlanObject { - PyObject_HEAD; + PyObject_HEAD void *plan; /* return of an SPI_saveplan */ int nargs; Oid *types; @@ -159,7 +159,7 @@ typedef struct PLyPlanObject typedef struct PLyResultObject { - PyObject_HEAD; + PyObject_HEAD /* HeapTuple *tuples; */ PyObject *nrows; /* number of rows returned by query */ PyObject *rows; /* data rows, or None if no data returned */ |