[GRASS-SVN] r51094 - grass/trunk/vector/v.category

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Mar 17 16:43:22 EDT 2012


Author: martinl
Date: 2012-03-17 13:43:22 -0700 (Sat, 17 Mar 2012)
New Revision: 51094

Modified:
   grass/trunk/vector/v.category/main.c
Log:
v.category: print message about added centroids only when at least one has been added to the map


Modified: grass/trunk/vector/v.category/main.c
===================================================================
--- grass/trunk/vector/v.category/main.c	2012-03-17 20:18:20 UTC (rev 51093)
+++ grass/trunk/vector/v.category/main.c	2012-03-17 20:43:22 UTC (rev 51094)
@@ -325,7 +325,8 @@
 		Vect_write_line(&Out, GV_CENTROID, Points, Cats);
 		new_centr++;
 	    }
-	    G_message(_("%d new centroids placed in output map"), new_centr);
+	    if (new_centr > 0) 
+		G_message(_("%d new centroids placed in output map"), new_centr);
 	}
 	break;
 



More information about the grass-commit mailing list