[GRASS-SVN] r44187 - grass/trunk/raster/r.proj

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Nov 6 11:01:22 EDT 2010


Author: martinl
Date: 2010-11-06 08:01:22 -0700 (Sat, 06 Nov 2010)
New Revision: 44187

Modified:
   grass/trunk/raster/r.proj/main.c
Log:
r.proj: " " -> NULL


Modified: grass/trunk/raster/r.proj/main.c
===================================================================
--- grass/trunk/raster/r.proj/main.c	2010-11-06 14:53:43 UTC (rev 44186)
+++ grass/trunk/raster/r.proj/main.c	2010-11-06 15:01:22 UTC (rev 44187)
@@ -442,7 +442,7 @@
     G_adjust_Cell_head(&outcellhd, 0, 0);
     Rast_set_output_window(&outcellhd);
 
-    G_message(" ");
+    G_message(NULL);
     G_message(_("Input:"));
     G_message(_("Cols: %d (%d)"), incellhd.cols, icols);
     G_message(_("Rows: %d (%d)"), incellhd.rows, irows);
@@ -452,7 +452,7 @@
     G_message(_("East: %f (%f)"), incellhd.east, ieast);
     G_message(_("EW-res: %f"), incellhd.ew_res);
     G_message(_("NS-res: %f"), incellhd.ns_res);
-    G_message(" ");
+    G_message(NULL);
 
     G_message(_("Output:"));
     G_message(_("Cols: %d (%d)"), outcellhd.cols, ocols);
@@ -463,7 +463,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(" ");
+    G_message(NULL);
 
     /* open and read the relevant parts of the input map and close it */
     G__switch_env();
@@ -536,7 +536,7 @@
     Rast_command_history(&history);
     Rast_write_history(mapname, &history);
 
-    G_done_msg(" ");
+    G_done_msg(NULL);
     exit(EXIT_SUCCESS);
 }
 



More information about the grass-commit mailing list