[GRASS-SVN] r46732 - grass/trunk/vector/v.random

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Jun 17 21:40:50 EDT 2011


Author: hamish
Date: 2011-06-17 18:40:50 -0700 (Fri, 17 Jun 2011)
New Revision: 46732

Modified:
   grass/trunk/vector/v.random/main.c
Log:
trivial whitespace

Modified: grass/trunk/vector/v.random/main.c
===================================================================
--- grass/trunk/vector/v.random/main.c	2011-06-18 01:37:28 UTC (rev 46731)
+++ grass/trunk/vector/v.random/main.c	2011-06-18 01:40:50 UTC (rev 46732)
@@ -243,7 +243,7 @@
     if (b) {
 	rng = drand48;
 	max = 1.0;
-	/* Init the random seed*/
+	/* Init the random seed */
 	if(parm.seed->answer)
 	    srand48((long)seed);
 	else
@@ -252,7 +252,7 @@
     else {  	/* default is rand() */
 	rng = myrand;
 	max = RAND_MAX;
-	/* Init the random seed*/
+	/* Init the random seed */
 	if(parm.seed->answer)
 	    srand(seed);
 	else



More information about the grass-commit mailing list