aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-03-27 20:57:58 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-03-27 20:57:58 +0000
commitcc061b5521005bd9e05037a45f3fe05a02d0da8c (patch)
tree1c21a1e591393907021fb10833fe1d9ffc903fbe
parentf50a031bffa461dbe8dd857c2e87f31cce84c4db (diff)
add missing #pragma warning disable (now using _MSC_VER)
svn path=/trunk/; revision=21227
-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);