diff options
author | Evan Huus <eapache@gmail.com> | 2013-07-28 22:02:00 +0000 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2013-07-28 22:02:00 +0000 |
commit | f3fb2c00ec7db47603c80ea2ef67161de44ce230 (patch) | |
tree | 6dc53566dc2fa334db0cea3463eedbd1c1c2d8bf /ui | |
parent | a4ad9e9f74d58f3a869ceb27845f74345d7b81be (diff) | |
download | wireshark-f3fb2c00ec7db47603c80ea2ef67161de44ce230.tar.gz wireshark-f3fb2c00ec7db47603c80ea2ef67161de44ce230.tar.bz2 wireshark-f3fb2c00ec7db47603c80ea2ef67161de44ce230.zip |
Remove unused variable caught by GCC 4.8.
svn path=/trunk/; revision=50992
Diffstat (limited to 'ui')
-rw-r--r-- | ui/gtk/capture_dlg.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/gtk/capture_dlg.c b/ui/gtk/capture_dlg.c index b97e34294f..c444d58804 100644 --- a/ui/gtk/capture_dlg.c +++ b/ui/gtk/capture_dlg.c @@ -5322,7 +5322,6 @@ capture_start_cb(GtkWidget *w _U_, gpointer d _U_) { interface_options interface_opts; guint i; - gboolean filter_all; gchar * filter_str; #ifdef HAVE_AIRPCAP @@ -5381,7 +5380,6 @@ capture_start_cb(GtkWidget *w _U_, gpointer d _U_) If the same capture filter is used for all the selected interfaces, add it to the global recent capture filter list as well. */ - filter_all = TRUE; filter_str = NULL; for (i = 0; i < global_capture_opts.ifaces->len; i++) { interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i); @@ -5401,7 +5399,6 @@ capture_start_cb(GtkWidget *w _U_, gpointer d _U_) g_free(filter_str); } filter_str = NULL; - filter_all = FALSE; } } } |