aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-openwire.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-12-11 17:08:23 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-12-11 17:08:23 +0000
commit95b25a44ccf3e6cfb7acda5f3cc4bf2f780aa5a7 (patch)
tree1b6cad01492bbf6388fff5c320d27dbfe2429334 /epan/dissectors/packet-openwire.c
parent4c19d29b7ca86d666b5168e0612c6b3374bb8d1b (diff)
Remove _U_ from dissect_openwire_tcp()'s data parameter; technically it is used since it is passed to tcp_dissect_pdus(), even though dissect_openwire() doesn't actually use it.
svn path=/trunk/; revision=53939
Diffstat (limited to 'epan/dissectors/packet-openwire.c')
-rw-r--r--epan/dissectors/packet-openwire.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-openwire.c b/epan/dissectors/packet-openwire.c
index 8d44b5b59a..5f262d06d7 100644
--- a/epan/dissectors/packet-openwire.c
+++ b/epan/dissectors/packet-openwire.c
@@ -1375,7 +1375,7 @@ get_openwire_pdu_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset)
}
static int
-dissect_openwire_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
+dissect_openwire_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
{
tcp_dissect_pdus(tvb, pinfo, tree, openwire_desegment, 5, get_openwire_pdu_len, dissect_openwire, data);
return tvb_length(tvb);