mirror of https://github.com/GNOME/gimp.git
app: Don't care about return value of g_string_append()
This commit is contained in:
parent
a35813ffd7
commit
f33dcf2df2
app/core
|
@ -164,8 +164,8 @@ add_to_inhibit_string (gpointer data,
|
|||
|
||||
if (module->load_inhibit)
|
||||
{
|
||||
str = g_string_append_c (str, G_SEARCHPATH_SEPARATOR);
|
||||
str = g_string_append (str, module->filename);
|
||||
g_string_append_c (str, G_SEARCHPATH_SEPARATOR);
|
||||
g_string_append (str, module->filename);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue