Pārlūkot izejas kodu

G_parser(): minor cosmetics

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@60712 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho 11 gadi atpakaļ
vecāks
revīzija
c47feac7b1
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 2 1
      lib/gis/parser.c

+ 2 - 1
lib/gis/parser.c

@@ -526,6 +526,7 @@ int G_parser(int argc, char **argv)
 		while (*(++ptr))
 		    set_flag(*ptr);
 	    }
+
 	    /* If we see standard option format (option=val) */
 	    else if (is_option(ptr)) {
 		set_option(ptr);
@@ -543,7 +544,7 @@ int G_parser(int argc, char **argv)
 
 	    /* If we see the non valid argument (no "=", just argument) */
 	    else {
-		G_asprintf(&err, _("Sorry <%s> is not a valid option"), ptr);
+		G_asprintf(&err, _("Sorry, <%s> is not a valid option"), ptr);
 		append_error(err);
 	    }