aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-08-27 19:24:14 +0200
committerGuy Harris <guy@alum.mit.edu>2017-08-27 20:02:17 +0000
commit837c42d264ace217d23ca3a67ad19bf819e0690b (patch)
treeadf8bebe221c5060cfbfe9f5c3ee3374ae051572
parent74d39b2aa6360f2a5313901c861b0faa098b4c48 (diff)
diameter_3gpp: fix 'pinfo' was marked unused but was used [-Wused-but-marked-unused]
Change-Id: Iefec98b1bbb47eec4df684933df4b44197dd9164 Reviewed-on: https://code.wireshark.org/review/23242 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-diameter_3gpp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-diameter_3gpp.c b/epan/dissectors/packet-diameter_3gpp.c
index aa34064784..01ae1f3fd2 100644
--- a/epan/dissectors/packet-diameter_3gpp.c
+++ b/epan/dissectors/packet-diameter_3gpp.c
@@ -1300,7 +1300,7 @@ dissect_diameter_3gpp_credit_management_status(tvbuff_t *tvb, packet_info *pinfo
/* AVP Code: 1242 location estimate */
static int
-dissect_diameter_3gpp_location_estimate(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, void *data _U_)
+dissect_diameter_3gpp_location_estimate(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
dissect_geographical_description(tvb, pinfo, tree);
@@ -1936,7 +1936,7 @@ dissect_diameter_3gpp_air_flags(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tre
/* AVP Code: 2516 EUTRAN-Positioning-Data */
static int
-dissect_diameter_3gpp_eutran_positioning_data(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, void *data _U_)
+dissect_diameter_3gpp_eutran_positioning_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
return dissect_lcsap_Positioning_Data_PDU(tvb, pinfo, tree, NULL);
}