mirror of https://github.com/GNOME/gimp.git
gimp_progress_set_text() has a boolean return value, really ...
This commit is contained in:
parent
aa91f99a1b
commit
0d2173eb79
|
@ -201,7 +201,7 @@ gimp_progress_set_text (const gchar *format,
|
|||
gboolean retval;
|
||||
va_list args;
|
||||
|
||||
g_return_if_fail (format != NULL);
|
||||
g_return_val_if_fail (format != NULL, FALSE);
|
||||
|
||||
va_start (args, format);
|
||||
text = g_strdup_vprintf (format, args);
|
||||
|
|
Loading…
Reference in New Issue