From: Matthias Clasen Date: Tue, 8 Mar 2005 05:20:47 +0000 (+0000) Subject: Fix an error message. (#168751, Hazael Maldonado Torres) X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=0fa2c2b3662e253bc3f85bfac7fc81b50e487496;p=dana%2Fcg-glib.git Fix an error message. (#168751, Hazael Maldonado Torres) 2005-03-08 Matthias Clasen * glib/goption.c (parse_int): Fix an error message. (#168751, Hazael Maldonado Torres) --- diff --git a/ChangeLog b/ChangeLog index b94c653c..e9c5d4d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-08 Matthias Clasen + + * glib/goption.c (parse_int): Fix an error message. + (#168751, Hazael Maldonado Torres) + 2005-03-07 Matthias Clasen * glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS). diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b94c653c..e9c5d4d0 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2005-03-08 Matthias Clasen + + * glib/goption.c (parse_int): Fix an error message. + (#168751, Hazael Maldonado Torres) + 2005-03-07 Matthias Clasen * glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS). diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index b94c653c..e9c5d4d0 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2005-03-08 Matthias Clasen + + * glib/goption.c (parse_int): Fix an error message. + (#168751, Hazael Maldonado Torres) + 2005-03-07 Matthias Clasen * glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS). diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b94c653c..e9c5d4d0 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2005-03-08 Matthias Clasen + + * glib/goption.c (parse_int): Fix an error message. + (#168751, Hazael Maldonado Torres) + 2005-03-07 Matthias Clasen * glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS). diff --git a/glib/goption.c b/glib/goption.c index 98d2b506..a41412bd 100644 --- a/glib/goption.c +++ b/glib/goption.c @@ -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; }