Remove trailing semicolons from macro initializations in plpython.
authorBruce Momjian
Sun, 4 Jan 2004 00:14:17 +0000 (00:14 +0000)
committerBruce Momjian
Sun, 4 Jan 2004 00:14:17 +0000 (00:14 +0000)
Problem report on True64 Unix by Nikola Milutinovic.

src/pl/plpython/plpython.c

index 2988a7d1a28d2f3cd9b3c8634d0eba2755e9edc4..1e91fa109d8932cf3ad0808f161322bf7cde4074 100644 (file)
@@ -29,7 +29,7 @@
  * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  *
  * IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.42 2003/11/29 19:52:12 pgsql Exp $
+ * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.43 2004/01/04 00:14:17 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 */