From: Sandro Santilli <strk@keybit.net>
Date: Sun, 20 Nov 2011 21:19:07 +0000 (+0000)
Subject: Better indent for comparing obtained/expected
X-Git-Tag: 2.0.0alpha1~668
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e055f1d2d2edc16f181abfa0a974dfd52ca2939;p=postgis

Better indent for comparing obtained/expected

git-svn-id: http://svn.osgeo.org/postgis/trunk@8192 b70326c6-7e19-0410-871a-916f4a2858ee
---

diff --git a/liblwgeom/cunit/cu_libgeom.c b/liblwgeom/cunit/cu_libgeom.c
index 76bc92c57..6c67e6f58 100644
--- a/liblwgeom/cunit/cu_libgeom.c
+++ b/liblwgeom/cunit/cu_libgeom.c
@@ -561,7 +561,7 @@ static void test_lwgeom_clone(void)
 		cloned = lwgeom_clone(geom);
 		out_ewkt = lwgeom_to_ewkt(cloned);
 		if (strcmp(in_ewkt, out_ewkt))
-			fprintf(stderr, "\nExp:   %s\nObt:  %s\n", in_ewkt, out_ewkt);
+			fprintf(stderr, "\nExp:  %s\nObt:  %s\n", in_ewkt, out_ewkt);
 		CU_ASSERT_STRING_EQUAL(in_ewkt, out_ewkt);
 		lwfree(out_ewkt);
 		lwgeom_free(cloned);
@@ -607,7 +607,7 @@ static void test_lwgeom_force_clockwise(void)
 	in_ewkt = "POLYGON((0 0,0 10,10 10,10 0,0 0),(2 2,4 2,2 4,2 2),(6 2,8 2,8 4,6 2))";
 	out_ewkt = lwgeom_to_ewkt(geom);
 	if (strcmp(in_ewkt, out_ewkt))
-		fprintf(stderr, "\nExp:   %s\nObt:  %s\n", in_ewkt, out_ewkt);
+		fprintf(stderr, "\nExp:  %s\nObt:  %s\n", in_ewkt, out_ewkt);
 	CU_ASSERT_STRING_EQUAL(in_ewkt, out_ewkt);
 	lwfree(out_ewkt);
 	lwgeom_free(geom);
@@ -618,7 +618,7 @@ static void test_lwgeom_force_clockwise(void)
 	in_ewkt = "POLYGON((0 0,0 10,10 10,10 0,0 0),(2 2,4 2,2 4,2 2),(6 2,8 2,8 4,6 2))";
 	out_ewkt = lwgeom_to_ewkt(geom);
 	if (strcmp(in_ewkt, out_ewkt))
-		fprintf(stderr, "\nExp:   %s\nObt:  %s\n", in_ewkt, out_ewkt);
+		fprintf(stderr, "\nExp:  %s\nObt:  %s\n", in_ewkt, out_ewkt);
 	CU_ASSERT_STRING_EQUAL(in_ewkt, out_ewkt);
 	lwfree(out_ewkt);
 	lwgeom_free(geom);