Преглед на файлове

Added a space between sentences.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58121 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho преди 11 години
родител
ревизия
a6a14b2ece
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      lib/raster/window.c

+ 3 - 3
lib/raster/window.c

@@ -16,7 +16,7 @@ void Rast_get_window(struct Cell_head *window)
 
     if (R__.split_window)
 	G_fatal_error(_("Internal error: Rast_get_window() called with split window."
-			"Use Rast_get_input_window() or Rast_get_output_window() instead."));
+			" Use Rast_get_input_window() or Rast_get_output_window() instead."));
 
     *window = R__.wr_window;
 }
@@ -75,7 +75,7 @@ int Rast_window_rows(void)
 
     if (R__.split_window)
 	G_fatal_error(_("Internal error: Rast_window_rows() called with split window."
-			"Use Rast_input_window_rows() or Rast_output_window_rows() instead."));
+			" Use Rast_input_window_rows() or Rast_output_window_rows() instead."));
 
     return R__.wr_window.rows;
 }
@@ -110,7 +110,7 @@ int Rast_window_cols(void)
 
     if (R__.split_window)
 	G_fatal_error(_("Internal error: Rast_window_cols() called with split window."
-			"Use Rast_input_window_cols() or Rast_output_window_cols() instead."));
+			" Use Rast_input_window_cols() or Rast_output_window_cols() instead."));
 
     return R__.wr_window.cols;
 }