aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cipmotion.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-13 00:16:54 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-13 00:16:54 +0000
commit45b2da0e44a9f18802581a1ccca65dbe757db3a3 (patch)
tree3b23b94449ec2e4d0675c9d309e8058017abf8b9 /epan/dissectors/packet-cipmotion.c
parenta2e8e1cdcd8e353ca7159344afc0b2a0c0d8a5e8 (diff)
Mark some function parameters as unused (_U_); Fixes compiler warnings.
svn path=/trunk/; revision=39397
Diffstat (limited to 'epan/dissectors/packet-cipmotion.c')
-rw-r--r--epan/dissectors/packet-cipmotion.c6
1 files changed, 3 insertions, 3 deletions
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);
}