[GRASS-SVN] r31343 - grass/branches/develbranch_6/general/g.region

svn_grass at osgeo.org svn_grass at osgeo.org
Wed May 14 03:07:16 EDT 2008


Author: hamish
Date: 2008-05-14 03:07:16 -0400 (Wed, 14 May 2008)
New Revision: 31343

Modified:
   grass/branches/develbranch_6/general/g.region/printwindow.c
Log:
fix whitespacing

Modified: grass/branches/develbranch_6/general/g.region/printwindow.c
===================================================================
--- grass/branches/develbranch_6/general/g.region/printwindow.c	2008-05-14 07:03:09 UTC (rev 31342)
+++ grass/branches/develbranch_6/general/g.region/printwindow.c	2008-05-14 07:07:16 UTC (rev 31343)
@@ -639,7 +639,7 @@
 	    else
 	    {
 		G_format_northing(sh_ll_n, buf, PROJECTION_LL);
-		fprintf(stdout, "%-*s  %s\n", width, "north latitude :", buf);
+		fprintf(stdout, "%-*s  %s\n", width, "north latitude:", buf);
 		G_format_northing(sh_ll_s, buf, PROJECTION_LL);
 		fprintf(stdout, "%-*s  %s\n", width, "south latitude:", buf);
 		G_format_easting(sh_ll_w, buf, PROJECTION_LL);
@@ -647,9 +647,9 @@
 		G_format_easting(sh_ll_e, buf, PROJECTION_LL);
 		fprintf(stdout, "%-*s  %s\n", width, "east longitude:", buf);
 		G_format_easting((sh_ll_e - sh_ll_w)/2. + sh_ll_w, buf, PROJECTION_LL);
-		fprintf(stdout, "%-*s  %s\n", width, "center longitude:", buf);
+		fprintf(stdout, "%-*s %s\n", width, "center longitude:", buf);
 		G_format_northing((sh_ll_n - sh_ll_s)/2. + sh_ll_s, buf, PROJECTION_LL);
-		fprintf(stdout, "%-*s %s\n", width, "center latitude:", buf);
+		fprintf(stdout, "%-*s  %s\n", width, "center latitude:", buf);
 	    }
 
 	    /*It should be calculated which number of rows and cols we have in LL */



More information about the grass-commit mailing list