[GRASS-SVN] r45196 - grass/branches/develbranch_6/raster/r.proj.seg

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 26 12:22:23 EST 2011


Author: mmetz
Date: 2011-01-26 09:22:22 -0800 (Wed, 26 Jan 2011)
New Revision: 45196

Modified:
   grass/branches/develbranch_6/raster/r.proj.seg/main.c
Log:
fix for #1262

Modified: grass/branches/develbranch_6/raster/r.proj.seg/main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.proj.seg/main.c	2011-01-26 17:21:48 UTC (rev 45195)
+++ grass/branches/develbranch_6/raster/r.proj.seg/main.c	2011-01-26 17:22:22 UTC (rev 45196)
@@ -436,7 +436,7 @@
     G_adjust_Cell_head(&outcellhd, 0, 0);
     G_set_window(&outcellhd);
 
-    G_message(NULL);
+    G_message(" ");
     G_message(_("Input:"));
     G_message(_("Cols: %d (%d)"), incellhd.cols, icols);
     G_message(_("Rows: %d (%d)"), incellhd.rows, irows);
@@ -447,7 +447,7 @@
     G_message(_("EW-res: %f"), incellhd.ew_res);
     G_message(_("NS-res: %f"), incellhd.ns_res);
 
-    G_message(NULL);
+    G_message(" ");
     G_message(_("Output:"));
     G_message(_("Cols: %d (%d)"), outcellhd.cols, ocols);
     G_message(_("Rows: %d (%d)"), outcellhd.rows, orows);
@@ -457,7 +457,7 @@
     G_message(_("East: %f (%f)"), outcellhd.east, oeast);
     G_message(_("EW-res: %f"), outcellhd.ew_res);
     G_message(_("NS-res: %f"), outcellhd.ns_res);
-    G_message(NULL);
+    G_message(" ");
 
     /* open and read the relevant parts of the input map and close it */
     G__switch_env();



More information about the grass-commit mailing list