aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-devicenet.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-06 08:04:09 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-06 08:04:09 +0000
commitf5136e37535224706563310c431d312c2d3970e3 (patch)
tree6b4170ccb149e0d8ade0b572b2f09fd48f8f4277 /epan/dissectors/packet-devicenet.c
parent643f9efce238971298e1979d9433dd5a88d863a3 (diff)
Fix unused parameter 'pinfo'
svn path=/trunk/; revision=53804
Diffstat (limited to 'epan/dissectors/packet-devicenet.c')
-rw-r--r--epan/dissectors/packet-devicenet.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-devicenet.c b/epan/dissectors/packet-devicenet.c
index 97c5b03019..2c3d03491f 100644
--- a/epan/dissectors/packet-devicenet.c
+++ b/epan/dissectors/packet-devicenet.c
@@ -264,7 +264,7 @@ static const value_string devicenet_io_attribute_vals[] = {
};
static gint body_type_8_over_8_dissection(guint8 data_length, proto_tree *devicenet_tree,
- tvbuff_t *tvb, packet_info *pinfo, gint offset)
+ tvbuff_t *tvb, packet_info *pinfo _U_, gint offset)
{
proto_item *devicenet_8_8;
guint16 class_id, instance, attribute;
@@ -304,7 +304,7 @@ static gint body_type_8_over_8_dissection(guint8 data_length, proto_tree *device
}
static gint body_type_8_over_16_dissection(guint8 data_length, proto_tree *devicenet_tree,
- tvbuff_t *tvb, packet_info *pinfo, gint offset)
+ tvbuff_t *tvb, packet_info *pinfo _U_, gint offset)
{
proto_item *devicenet_8_16;
guint16 class_id, instance, attribute;
@@ -335,7 +335,7 @@ static gint body_type_8_over_16_dissection(guint8 data_length, proto_tree *devic
}
static gint body_type_16_over_8_dissection(guint8 data_length, proto_tree *devicenet_tree, tvbuff_t *tvb,
- packet_info *pinfo, gint offset)
+ packet_info *pinfo _U_, gint offset)
{
proto_item *devicenet_16_8;
guint16 class_id, instance, attribute;
@@ -367,7 +367,7 @@ static gint body_type_16_over_8_dissection(guint8 data_length, proto_tree *devic
}
static gint body_type_16_over_16_dissection(guint8 data_length, proto_tree *devicenet_tree, tvbuff_t *tvb,
- packet_info *pinfo, gint offset)
+ packet_info *pinfo _U_, gint offset)
{
proto_item *devicenet_16_16;