[GRASS-SVN] r39000 - grass/trunk/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Sep 5 14:07:34 EDT 2009


Author: glynn
Date: 2009-09-05 14:07:34 -0400 (Sat, 05 Sep 2009)
New Revision: 39000

Modified:
   grass/trunk/lib/gis/trim_dec.c
Log:
Remove bogus return value from G_trim_decimal()


Modified: grass/trunk/lib/gis/trim_dec.c
===================================================================
--- grass/trunk/lib/gis/trim_dec.c	2009-09-05 17:36:49 UTC (rev 38999)
+++ grass/trunk/lib/gis/trim_dec.c	2009-09-05 18:07:34 UTC (rev 39000)
@@ -27,7 +27,7 @@
 
     /* don't trim e+20 into e+2 */
     if( strchr(buf, 'e') || strchr(buf, 'E') )
-	return 0;
+	return;
 
     /* find the . */
     while (*buf != '.')



More information about the grass-commit mailing list