From: Daniel Baston Date: Wed, 2 Dec 2015 01:54:29 +0000 (+0000) Subject: fix compiler warning in test X-Git-Tag: 2.3.0beta1~342 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99416f62719d65a0305e6fa2e556c08d23c5da51;p=postgis fix compiler warning in test git-svn-id: http://svn.osgeo.org/postgis/trunk@14468 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/cunit/cu_tree.c b/liblwgeom/cunit/cu_tree.c index a03d5df69..be9738b22 100644 --- a/liblwgeom/cunit/cu_tree.c +++ b/liblwgeom/cunit/cu_tree.c @@ -346,7 +346,7 @@ static void test_tree_circ_distance_threshold(void) for ( j = 0; j < npolys; j++ ) { - LWGEOM *lwg1 = lwgeom_from_hexwkb(txt_poly2, LW_PARSER_CHECK_NONE); + LWGEOM *lwg1 = lwgeom_from_hexwkb(polys[j], LW_PARSER_CHECK_NONE); LWGEOM *lwg2 = lwgeom_from_wkt("POINT(-69.83262 43.43636)", LW_PARSER_CHECK_NONE); CIRC_NODE *c1 = lwgeom_calculate_circ_tree(lwg1);