[mapserver-commits] r7934 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Mon Sep 29 22:57:06 EDT 2008


Author: sdlime
Date: 2008-09-29 22:57:06 -0400 (Mon, 29 Sep 2008)
New Revision: 7934

Modified:
   trunk/mapserver/maplabel.c
Log:
Trivial cleanup.

Modified: trunk/mapserver/maplabel.c
===================================================================
--- trunk/mapserver/maplabel.c	2008-09-29 16:57:06 UTC (rev 7933)
+++ trunk/mapserver/maplabel.c	2008-09-30 02:57:06 UTC (rev 7934)
@@ -351,12 +351,10 @@
 
   /* Store the label point or the label path (Bug #1620) */
   if ( point ) {
-
-  cachePtr->point = *point; /* the actual label point */
-  cachePtr->point.x = MS_NINT(cachePtr->point.x);
-  cachePtr->point.y = MS_NINT(cachePtr->point.y);
+    cachePtr->point = *point; /* the actual label point */
+    cachePtr->point.x = MS_NINT(cachePtr->point.x);
+    cachePtr->point.y = MS_NINT(cachePtr->point.y);
     cachePtr->labelpath = NULL;
-    
   } else if ( labelpath ) {
     int i;
     cachePtr->labelpath = labelpath;



More information about the mapserver-commits mailing list