From 0c471e782fe2179284a58f72781afab0e90689a6 Mon Sep 17 00:00:00 2001 From: Joerg Mayer Date: Mon, 28 Mar 2016 21:02:17 +0200 Subject: Fix more -Wused-but-marked-unused warnings/errors. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ieb3e70a23c1a55b7ba60b1b32f159341adfe65b7 Reviewed-on: https://code.wireshark.org/review/14682 Reviewed-by: Jörg Mayer --- epan/dissectors/packet-bfcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-bfcp.c') diff --git a/epan/dissectors/packet-bfcp.c b/epan/dissectors/packet-bfcp.c index 159430ad8a..f8874c3716 100644 --- a/epan/dissectors/packet-bfcp.c +++ b/epan/dissectors/packet-bfcp.c @@ -423,7 +423,7 @@ dissect_bfcp_heur_check(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree /* Code to actually dissect BFCP packets */ static int -dissect_bfcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_) +dissect_bfcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data) { int offset = 0; guint8 primitive; @@ -486,7 +486,7 @@ dissect_bfcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_ } static gboolean -dissect_bfcp_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) +dissect_bfcp_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data) { if (!dissect_bfcp_heur_check(tvb, pinfo, tree, data)) return FALSE; -- cgit v1.2.3