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
This commit is contained in:
Chris Maynard 2013-12-11 17:08:23 +00:00
parent 4c19d29b7c
commit 95b25a44cc
1 changed files with 1 additions and 1 deletions

View File

@ -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);