From 8fc15cd56ee8d455a887c56fa43a329f676793f5 Mon Sep 17 00:00:00 2001 From: JucaBlues Date: Sat, 28 Jun 2008 20:13:29 +0000 Subject: [PATCH] warning cleanup --- src/selection-chemistry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index d4964c284..9b11ef9f6 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -1887,7 +1887,6 @@ sp_selection_relink() gchar *newref = g_strdup_printf ("#%s", newid); // Get a copy of current selection. - GSList *new_select = NULL; bool relinked = false; for (GSList *items = (GSList *) selection->itemList(); items != NULL; @@ -2544,7 +2543,8 @@ sp_selection_create_bitmap_copy () // Run filter, if any if (run) { g_print ("Running external filter: %s\n", run); - system (run); + int retval; + retval = system (run); } // Import the image back -- 2.30.2