summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-03-21 00:36:44 +0000
committerGuy Harris <guy@alum.mit.edu>2012-03-21 00:36:44 +0000
commit7405ba81451de0db465daf96ba0deb06ebc0a681 (patch)
tree2b5b83f48f64b1b9ab9f269733c2064e3681d9fe
parentd43d1c0a6f5c1d59c086035ff6881ffbd3d38a7d (diff)
downloadwireshark-7405ba81451de0db465daf96ba0deb06ebc0a681.tar.gz
The chimney stuff is Windows-only (not that we shouldn't offer the
ability to turn offloading off on UN*Xes as well...). svn path=/trunk/; revision=41695
-rw-r--r--ui/gtk/main_welcome.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/gtk/main_welcome.c b/ui/gtk/main_welcome.c
index 0d7129f2e6..ff8d4c6b30 100644
--- a/ui/gtk/main_welcome.c
+++ b/ui/gtk/main_welcome.c
@@ -934,7 +934,10 @@ clear_capture_box(void)
static void fill_capture_box(void)
{
GtkWidget *box_to_fill;
- GtkWidget *item_hb_interface_list, *item_hb_capture, *item_hb_start, *label, *w, *item_hb;
+ GtkWidget *item_hb_interface_list, *item_hb_capture, *item_hb_start, *label, *w;
+#ifdef _WIN32
+ GtkWidget *item_hb;
+#endif
GtkTreeSelection *selection;
GtkCellRenderer *renderer;
GtkTreeViewColumn *column;