aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mausb.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2014-11-08 11:58:33 +0100
committerMartin Kaiser <wireshark@kaiser.cx>2014-11-08 14:19:00 +0000
commitf82b2f2dd342b74f2ee6a7da2069614671ea8205 (patch)
treee077d741ee9df89391f2f997c6bbbd2342fd5fbe /epan/dissectors/packet-mausb.c
parent570df7592d1f6a38b28438192536f8c4872e8437 (diff)
remove parent parameter from dissect_usb_setup_request()
Change-Id: I5a24de9a12e301d472e701140299304e2cb4fcfc Reviewed-on: https://code.wireshark.org/review/5190 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Tested-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan/dissectors/packet-mausb.c')
-rw-r--r--epan/dissectors/packet-mausb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mausb.c b/epan/dissectors/packet-mausb.c
index 2fc47a2239..d4c5fb60c8 100644
--- a/epan/dissectors/packet-mausb.c
+++ b/epan/dissectors/packet-mausb.c
@@ -1370,8 +1370,8 @@ dissect_mausb_pkt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/* If this packet contains USB Setup Data */
if (mausb_has_setup_data(&header)) {
- offset = dissect_usb_setup_request(pinfo, mausb_tree, mausb_tree, tvb,
- offset, URB_SUBMIT, usb_conv_info,
+ offset = dissect_usb_setup_request(pinfo, mausb_tree, tvb, offset,
+ URB_SUBMIT, usb_conv_info,
USB_HEADER_IS_MAUSB);
}