From 45b2da0e44a9f18802581a1ccca65dbe757db3a3 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Thu, 13 Oct 2011 00:16:54 +0000 Subject: Mark some function parameters as unused (_U_); Fixes compiler warnings. svn path=/trunk/; revision=39397 --- epan/dissectors/packet-cipmotion.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'epan') diff --git a/epan/dissectors/packet-cipmotion.c b/epan/dissectors/packet-cipmotion.c index 69150d0a54..e627a107aa 100644 --- a/epan/dissectors/packet-cipmotion.c +++ b/epan/dissectors/packet-cipmotion.c @@ -722,7 +722,7 @@ dissect_status_data_set(guint32 status_data_set, proto_tree* tree, tvbuff_t* tvb * as their starting offset */ static guint32 -dissect_cntr_cyclic(guint32 con_format, tvbuff_t* tvb, proto_tree* tree, guint32 offset, guint32 size, guint32 instance) +dissect_cntr_cyclic(guint32 con_format _U_, tvbuff_t* tvb, proto_tree* tree, guint32 offset, guint32 size, guint32 instance _U_) { proto_item *header_item, *temp_proto_item; proto_tree *header_tree, *temp_proto_tree; @@ -812,7 +812,7 @@ dissect_cntr_cyclic(guint32 con_format, tvbuff_t* tvb, proto_tree* tree, guint32 * as their starting offset */ static guint32 -dissect_devce_cyclic(guint32 con_format, tvbuff_t* tvb, proto_tree* tree, guint32 offset, guint32 size, guint32 instance) +dissect_devce_cyclic(guint32 con_format _U_, tvbuff_t* tvb, proto_tree* tree, guint32 offset, guint32 size, guint32 instance _U_) { proto_item *header_item, *temp_proto_item; proto_tree *header_tree, *temp_proto_tree; @@ -1451,7 +1451,7 @@ dissect_get_axis_attr_list_response (tvbuff_t* tvb, proto_tree* tree, guint32 of * Returns: None */ static void -dissect_group_sync_response (tvbuff_t* tvb, proto_tree* tree, guint32 offset, guint32 size) +dissect_group_sync_response (tvbuff_t* tvb, proto_tree* tree, guint32 offset, guint32 size _U_) { proto_tree_add_item(tree, hf_cip_group_sync, tvb, offset, 1, ENC_LITTLE_ENDIAN); } -- cgit v1.2.3