[gimp] app: Don't care about return value of g_string_append()
- From: Mukund Sivaraman <muks src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: Don't care about return value of g_string_append()
- Date: Mon, 3 Oct 2011 13:46:26 +0000 (UTC)
commit f33dcf2df21c506902e3dfe961e3358a9e8f6872
Author: Mukund Sivaraman <muks banu com>
Date: Mon Oct 3 19:06:37 2011 +0530
app: Don't care about return value of g_string_append()
app/core/gimp-modules.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/app/core/gimp-modules.c b/app/core/gimp-modules.c
index 90f0136..0d4764b 100644
--- a/app/core/gimp-modules.c
+++ b/app/core/gimp-modules.c
@@ -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);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]