Fix an error message. (#168751, Hazael Maldonado Torres)

2005-03-08  Matthias Clasen  <mclasen@redhat.com>

	* glib/goption.c (parse_int): Fix an error message.
	(#168751, Hazael Maldonado Torres)
This commit is contained in:
Matthias Clasen 2005-03-08 05:20:47 +00:00 committed by Matthias Clasen
parent 20967643a3
commit 0fa2c2b366
5 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-03-08 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (parse_int): Fix an error message.
(#168751, Hazael Maldonado Torres)
2005-03-07 Matthias Clasen <mclasen@redhat.com>
* glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS).

View File

@ -1,3 +1,8 @@
2005-03-08 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (parse_int): Fix an error message.
(#168751, Hazael Maldonado Torres)
2005-03-07 Matthias Clasen <mclasen@redhat.com>
* glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS).

View File

@ -1,3 +1,8 @@
2005-03-08 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (parse_int): Fix an error message.
(#168751, Hazael Maldonado Torres)
2005-03-07 Matthias Clasen <mclasen@redhat.com>
* glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS).

View File

@ -1,3 +1,8 @@
2005-03-08 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (parse_int): Fix an error message.
(#168751, Hazael Maldonado Torres)
2005-03-07 Matthias Clasen <mclasen@redhat.com>
* glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS).

View File

@ -611,7 +611,7 @@ parse_int (const gchar *arg_name,
{
g_set_error (error,
G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
_("Cannot parse integer value '%s' for --%s"),
_("Cannot parse integer value '%s' for %s"),
arg, arg_name);
return FALSE;
}