]> granicus.if.org Git - postgis/commitdiff
Style only: remove trailing blanks
authorSandro Santilli <strk@kbt.io>
Fri, 8 Sep 2017 21:46:10 +0000 (21:46 +0000)
committerSandro Santilli <strk@kbt.io>
Fri, 8 Sep 2017 21:46:10 +0000 (21:46 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@15670 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/lwgeom_api.c
liblwgeom/lwpoint.c

index 570e9e3511e4ea27a8c45c95152e9bff6fb187ea..63e66450f4884e4d4aad87d87ab62078d05aa366 100644 (file)
@@ -243,7 +243,7 @@ getPoint4d_p(const POINTARRAY *pa, int n, POINT4D *op)
        uint8_t *ptr;
        int zmflag;
 
-       if ( ! pa ) 
+       if ( ! pa )
        {
                lwerror("%s [%d] NULL POINTARRAY input", __FILE__, __LINE__);
                return 0;
@@ -334,7 +334,7 @@ getPoint3dz_p(const POINTARRAY *pa, int n, POINT3DZ *op)
 {
        uint8_t *ptr;
 
-       if ( ! pa ) 
+       if ( ! pa )
        {
                lwerror("%s [%d] NULL POINTARRAY input", __FILE__, __LINE__);
                return 0;
@@ -387,7 +387,7 @@ getPoint3dm_p(const POINTARRAY *pa, int n, POINT3DM *op)
        uint8_t *ptr;
        int zmflag;
 
-       if ( ! pa ) 
+       if ( ! pa )
        {
                lwerror("%s [%d] NULL POINTARRAY input", __FILE__, __LINE__);
                return 0;
@@ -465,7 +465,7 @@ getPoint2d(const POINTARRAY *pa, int n)
 int
 getPoint2d_p(const POINTARRAY *pa, int n, POINT2D *point)
 {
-       if ( ! pa ) 
+       if ( ! pa )
        {
                lwerror("%s [%d] NULL POINTARRAY input", __FILE__, __LINE__);
                return 0;
index b2d34fa100e6bc8ab469dc69b05442469d87e393..4cffe5743a6ab3a5cd91f3a113ce772d9ac043b2 100644 (file)
@@ -195,7 +195,7 @@ lwpoint_make(int srid, int hasz, int hasm, const POINT4D *p)
 void lwpoint_free(LWPOINT *pt)
 {
        if ( ! pt ) return;
-       
+
        if ( pt->bbox )
                lwfree(pt->bbox);
        if ( pt->point )
@@ -254,7 +254,7 @@ lwpoint_force_dims(const LWPOINT *point, int hasz, int hasm)
 {
        POINTARRAY *pdims = NULL;
        LWPOINT *pointout;
-       
+
        /* Return 2D empty */
        if( lwpoint_is_empty(point) )
        {