Remove trailing semicolons from macro initializations in plpython.
authorBruce Momjian <bruce@momjian.us>
Sun, 4 Jan 2004 00:14:55 +0000 (00:14 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 4 Jan 2004 00:14:55 +0000 (00:14 +0000)
Problem report on True64 Unix by Nikola Milutinovic.
]

src/pl/plpython/plpython.c

index f73466c0ab65190b367562a128d364ef613d62d0..4b272eda906af06382dcc6602c3a5a7b0cc88e04 100644 (file)
@@ -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 */