aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-04-15 19:20:20 +0200
committerAnders Broman <a.broman58@gmail.com>2016-04-18 11:24:17 +0000
commite1294f579ceae3fc5d7834d18927dc989e38ce60 (patch)
tree3190becbf29218487a6c832e1db6999be20266c4 /epan
parent7d64f6048782c89f80e48fe0b3db530124526b69 (diff)
ndr (DCERPC): fix 'param' was marked unused but was used [-Werror,-Wused-but-marked-unused]
Change-Id: Ieb2b3bf6243477939b7494d95195a236dbcf3f49 Reviewed-on: https://code.wireshark.org/review/14970 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-dcerpc-ndr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcerpc-ndr.c b/epan/dissectors/packet-dcerpc-ndr.c
index bf6c41f10e..659cdf0ddc 100644
--- a/epan/dissectors/packet-dcerpc-ndr.c
+++ b/epan/dissectors/packet-dcerpc-ndr.c
@@ -197,7 +197,7 @@ PIDL_dissect_uint16_val(tvbuff_t *tvb, gint offset, packet_info *pinfo,
int
PIDL_dissect_uint16(tvbuff_t *tvb, gint offset, packet_info *pinfo,
proto_tree *tree, dcerpc_info *di, guint8 *drep,
- int hfindex, guint32 param _U_)
+ int hfindex, guint32 param)
{
return PIDL_dissect_uint16_val(tvb, offset, pinfo, tree, di, drep, hfindex, param, NULL);
}