浏览代码

fix for https://trac.osgeo.org/grass/ticket/1262

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@45197 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 14 年之前
父节点
当前提交
61b0d95ec9
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      raster/r.proj/main.c

+ 3 - 3
raster/r.proj/main.c

@@ -441,7 +441,7 @@ int main(int argc, char **argv)
     G_adjust_Cell_head(&outcellhd, 0, 0);
     Rast_set_output_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);
@@ -451,7 +451,7 @@ int main(int argc, char **argv)
     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(NULL);
+    G_message(" ");
 
     G_message(_("Output:"));
     G_message(_("Cols: %d (%d)"), outcellhd.cols, ocols);
@@ -462,7 +462,7 @@ int main(int argc, char **argv)
     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();