1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-17 17:02:08 +03:00
Minor patches to geo_ops.c to clean up compile under AIX 4.1.3
This commit is contained in:
Marc G. Fournier
1997-05-19 03:49:39 +00:00
parent 500b17eadf
commit 6ea80b470b

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.6 1997/05/11 15:11:41 thomas Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.7 1997/05/19 03:49:39 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -986,7 +986,7 @@ path_close(PATH *path)
{ {
PATH *result; PATH *result;
if (PointerIsValid((char *)result = path_copy(path))) if (PointerIsValid((char *)(result = path_copy(path))))
result->closed = TRUE; result->closed = TRUE;
return(result); return(result);
@ -997,7 +997,7 @@ path_open(PATH *path)
{ {
PATH *result; PATH *result;
if (PointerIsValid((char *)result = path_copy(path))) if (PointerIsValid((char *)(result = path_copy(path))))
result->closed = FALSE; result->closed = FALSE;
return(result); return(result);
@ -2070,7 +2070,7 @@ POLYGON *poly_in(char *str)
#if OLD_FORMAT_IN #if OLD_FORMAT_IN
}; };
#endif; #endif
make_bound_box(poly); make_bound_box(poly);
@ -2639,7 +2639,7 @@ poly_path(POLYGON *poly)
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.6 1997/05/11 15:11:41 thomas Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.7 1997/05/19 03:49:39 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */