aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/profile_dlg.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-10 12:05:25 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-10 12:05:25 +0000
commit1f1c0a38aaf0ef838f3783652970c2e308aa437c (patch)
treef3febdc4d98050c226ef2a682e8534319f36d1fb /gtk/profile_dlg.c
parentf6f71f52c4468f826e9dd7eb3921db8322daaea9 (diff)
Removed some unused variables and unused assignments.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30918 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/profile_dlg.c')
-rw-r--r--gtk/profile_dlg.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/profile_dlg.c b/gtk/profile_dlg.c
index 510f26888e..8652a33abf 100644
--- a/gtk/profile_dlg.c
+++ b/gtk/profile_dlg.c
@@ -296,7 +296,6 @@ profile_apply(GtkWidget *main_w, GtkTreeView *profile_l, gboolean destroy)
/* First validate all profile names */
fl1 = g_list_first(edited_profiles);
while (fl1) {
- found = FALSE;
profile1 = (profile_def *) fl1->data;
g_strstrip(profile1->name);
if (profile_is_invalid_name(profile1->name)) {
@@ -308,7 +307,6 @@ profile_apply(GtkWidget *main_w, GtkTreeView *profile_l, gboolean destroy)
/* Then create new and rename changed */
fl1 = g_list_first(edited_profiles);
while (fl1) {
- found = FALSE;
profile1 = (profile_def *) fl1->data;
g_strstrip(profile1->name);
if (profile1->status == PROF_STAT_NEW) {