Add missing _() marker in error message.

gdb/ChangeLog:

	* mi/mi-main.c (mi_cmd_remove_inferior): Use _() marker for error
	message.  Change spelling of "can not" into "cannot".
This commit is contained in:
Joel Brobecker
2010-12-23 04:30:39 +00:00
parent 0e8708c7b0
commit 81ec3cceb2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-12-23 Joel Brobecker <brobecker@adacore.com>
* mi/mi-main.c (mi_cmd_remove_inferior): Use _() marker for error
message. Change spelling of "can not" into "cannot".
2010-12-23 Yao Qi <yao@codesourcery.com>
* arm-tdep.c (arm_gdbarch_init): Remove invoke to

View File

@ -1773,7 +1773,7 @@ mi_cmd_remove_inferior (char *command, char **argv, int argc)
error ("the specified thread group does not exist");
if (inf->pid != 0)
error ("can not remove an active inferior");
error (_("cannot remove an active inferior"));
if (inf == current_inferior ())
{