Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f04af68

Browse files
committed
Remove trailing semicolons from macro initializations in plpython.
Problem report on True64 Unix by Nikola Milutinovic.
1 parent e3107b2 commit f04af68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pl/plpython/plpython.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
3030
*
3131
* IDENTIFICATION
32-
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.42 2003/11/29 19:52:12 pgsql Exp $
32+
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.43 2004/01/04 00:14:17 momjian Exp $
3333
*
3434
*********************************************************************
3535
*/
@@ -149,7 +149,7 @@ typedef struct PLyProcedure
149149
*/
150150
typedef struct PLyPlanObject
151151
{
152-
PyObject_HEAD;
152+
PyObject_HEAD
153153
void *plan; /* return of an SPI_saveplan */
154154
int nargs;
155155
Oid *types;
@@ -159,7 +159,7 @@ typedef struct PLyPlanObject
159159

160160
typedef struct PLyResultObject
161161
{
162-
PyObject_HEAD;
162+
PyObject_HEAD
163163
/* HeapTuple *tuples; */
164164
PyObject *nrows; /* number of rows returned by query */
165165
PyObject *rows; /* data rows, or None if no data returned */

0 commit comments

Comments
 (0)