summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-batadv.c
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2016-03-28 21:02:17 +0200
committerJörg Mayer <jmayer@loplof.de>2016-03-28 19:06:13 +0000
commit0c471e782fe2179284a58f72781afab0e90689a6 (patch)
tree1e6fa0a19284ce040b04ef788c190246663438b3 /epan/dissectors/packet-batadv.c
parentc6fad4183c76259a20075c91599b02ce1a7b8e30 (diff)
downloadwireshark-0c471e782fe2179284a58f72781afab0e90689a6.tar.gz
Fix more -Wused-but-marked-unused warnings/errors.
Change-Id: Ieb3e70a23c1a55b7ba60b1b32f159341adfe65b7 Reviewed-on: https://code.wireshark.org/review/14682 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'epan/dissectors/packet-batadv.c')
-rw-r--r--epan/dissectors/packet-batadv.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-batadv.c b/epan/dissectors/packet-batadv.c
index 7fc4c126ff..ab28a7983a 100644
--- a/epan/dissectors/packet-batadv.c
+++ b/epan/dissectors/packet-batadv.c
@@ -3397,7 +3397,7 @@ static void dissect_batadv_tt_query(tvbuff_t *tvb, packet_info *pinfo, proto_tre
}
}
-static void dissect_batadv_tt_query_v14(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
+static void dissect_batadv_tt_query_v14(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
struct tt_query_packet_v14 *tt_query_packeth;
proto_tree *batadv_tt_query_tree = NULL;
@@ -3959,7 +3959,7 @@ static void dissect_batadv_tvlv_v15_header(tvbuff_t *tvb,
ENC_BIG_ENDIAN);
}
-static void dissect_batadv_tvlv_v15_dat(tvbuff_t *tvb, packet_info *pinfo _U_,
+static void dissect_batadv_tvlv_v15_dat(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree, int offset,
guint8 version)
{
@@ -3983,7 +3983,7 @@ static void dissect_batadv_tvlv_v15_nc(tvbuff_t *tvb, packet_info *pinfo,
}
}
-static void dissect_batadv_tvlv_v15_mcast(tvbuff_t *tvb, packet_info *pinfo _U_,
+static void dissect_batadv_tvlv_v15_mcast(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree, int offset,
guint8 version)
{
@@ -4007,7 +4007,7 @@ static void dissect_batadv_tvlv_v15_mcast(tvbuff_t *tvb, packet_info *pinfo _U_,
/* 3 byte of padding. */
}
-static void dissect_batadv_tvlv_v15_gw(tvbuff_t *tvb, packet_info *pinfo _U_,
+static void dissect_batadv_tvlv_v15_gw(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree, int offset,
guint8 version)
{
@@ -4032,7 +4032,7 @@ static void dissect_batadv_tvlv_v15_gw(tvbuff_t *tvb, packet_info *pinfo _U_,
up / 10, up % 10);
}
-static void dissect_batadv_tvlv_v15_roam(tvbuff_t *tvb, packet_info *pinfo _U_,
+static void dissect_batadv_tvlv_v15_roam(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree, int offset,
guint8 version)
{