From e097b55b1194baba93bb9c1c9a42daf2c75a49e9 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 6 Jul 2011 08:04:27 +0000 Subject: [PATCH] Compiler warning fix git-svn-id: http://svn.osgeo.org/postgis/trunk@7604 b70326c6-7e19-0410-871a-916f4a2858ee --- liblwgeom/cunit/cu_print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liblwgeom/cunit/cu_print.c b/liblwgeom/cunit/cu_print.c index 2943aa697..d3b889576 100644 --- a/liblwgeom/cunit/cu_print.c +++ b/liblwgeom/cunit/cu_print.c @@ -39,7 +39,7 @@ static void test_lwprint_assert_format(char * point_wkt, const char * format, co printf("\nAssert failed:\n\t%s\t(actual)\n\t%s\t(expected)\n", actual, expected); } lwfree(actual); - lwgeom_free(test_point); + lwpoint_free(test_point); } static void test_lwprint_assert_error(char * point_wkt, const char * format) { @@ -56,7 +56,7 @@ static void test_lwprint_assert_error(char * point_wkt, const char * format) { cu_error_msg_reset(); } - lwgeom_free(test_point); + lwpoint_free(test_point); } /* -- 2.50.1