summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/giop/packet-coseventcomm.c4
-rw-r--r--plugins/giop/packet-parlay.c4
-rw-r--r--plugins/giop/packet-tango.c4
3 files changed, 12 insertions, 0 deletions
diff --git a/plugins/giop/packet-coseventcomm.c b/plugins/giop/packet-coseventcomm.c
index bf6e9f58c9..657d77668f 100644
--- a/plugins/giop/packet-coseventcomm.c
+++ b/plugins/giop/packet-coseventcomm.c
@@ -48,6 +48,10 @@
G_MODULE_EXPORT const gchar version[] = "0.0.1";
#endif
+#ifdef _MSC_VER
+/* disable warning: "unreference local variable" */
+#pragma warning(disable:4101)
+#endif
static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset);
diff --git a/plugins/giop/packet-parlay.c b/plugins/giop/packet-parlay.c
index 1e18413d6e..a77111faba 100644
--- a/plugins/giop/packet-parlay.c
+++ b/plugins/giop/packet-parlay.c
@@ -48,6 +48,10 @@
G_MODULE_EXPORT const gchar version[] = "0.0.1";
#endif
+#ifdef _MSC_VER
+/* disable warning: "unreference local variable" */
+#pragma warning(disable:4101)
+#endif
static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset);
diff --git a/plugins/giop/packet-tango.c b/plugins/giop/packet-tango.c
index 331e7adf00..5e4cd02065 100644
--- a/plugins/giop/packet-tango.c
+++ b/plugins/giop/packet-tango.c
@@ -48,6 +48,10 @@
G_MODULE_EXPORT const gchar version[] = "0.0.1";
#endif
+#ifdef _MSC_VER
+/* disable warning: "unreference local variable" */
+#pragma warning(disable:4101)
+#endif
static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset);