aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2019-05-26 18:09:51 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2019-05-26 19:03:46 +0000
commit01768d026485e86306987248b59f46d8ce4611c5 (patch)
tree9aece41d5eaa8d945a0649f2fcc3c8950e7e9c5d
parent38dec96c656e438e1f09f7dda6327b85ffd0c479 (diff)
rfc7468: fix a used-but-marked-unused warning
file-rfc7468.c:428:39: error: 'data' was marked unused but was used dissect_rfc7468(tvb, pinfo, tree, data); Change-Id: I938f30edfc7cf952eadbd0cf79e4cc95bb971b2e Reviewed-on: https://code.wireshark.org/review/33369 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Petri-Dish: Martin Kaiser <wireshark@kaiser.cx> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rw-r--r--epan/dissectors/file-rfc7468.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/file-rfc7468.c b/epan/dissectors/file-rfc7468.c
index d9253aea56..7003902d02 100644
--- a/epan/dissectors/file-rfc7468.c
+++ b/epan/dissectors/file-rfc7468.c
@@ -362,7 +362,7 @@ dissect_rfc7468(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
#define MAX_EXPLANATORY_TEXT_LINES 20
static gboolean
-dissect_rfc7468_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
+dissect_rfc7468_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
{
int offset;
int linelen;