File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.6 1997/05/11 15:11:41 thomas Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.7 1997/05/19 03:49:39 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -986,7 +986,7 @@ path_close(PATH *path)
986
986
{
987
987
PATH * result ;
988
988
989
- if (PointerIsValid ((char * )result = path_copy (path )))
989
+ if (PointerIsValid ((char * )( result = path_copy (path ) )))
990
990
result -> closed = TRUE;
991
991
992
992
return (result );
@@ -997,7 +997,7 @@ path_open(PATH *path)
997
997
{
998
998
PATH * result ;
999
999
1000
- if (PointerIsValid ((char * )result = path_copy (path )))
1000
+ if (PointerIsValid ((char * )( result = path_copy (path ) )))
1001
1001
result -> closed = FALSE;
1002
1002
1003
1003
return (result );
@@ -2070,7 +2070,7 @@ POLYGON *poly_in(char *str)
2070
2070
2071
2071
#if OLD_FORMAT_IN
2072
2072
};
2073
- #endif ;
2073
+ #endif
2074
2074
2075
2075
make_bound_box (poly );
2076
2076
@@ -2639,7 +2639,7 @@ poly_path(POLYGON *poly)
2639
2639
*
2640
2640
*
2641
2641
* IDENTIFICATION
2642
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.6 1997/05/11 15:11:41 thomas Exp $
2642
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.7 1997/05/19 03:49:39 scrappy Exp $
2643
2643
*
2644
2644
*-------------------------------------------------------------------------
2645
2645
*/
You can’t perform that action at this time.
0 commit comments