aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-04-19 14:06:17 +0200
committerAnders Broman <a.broman58@gmail.com>2016-04-25 10:53:48 +0000
commit267cf1367a770d8cbb37e32ab494432dd42cbd7d (patch)
tree179310dc546932efd85b90ad8fcee9d3ba06e1be
parentc86a0888fe52a925f9a819c4f37e34188d5239c5 (diff)
gluster_cli: fix 'data' was marked unused but was used [-Werror,-Wused-but-marked-unused]
Change-Id: I969403ac48dbec1ad765e799fcf0cb5b76cd83c7 Reviewed-on: https://code.wireshark.org/review/15097 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-gluster_cli.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-gluster_cli.c b/epan/dissectors/packet-gluster_cli.c
index af926627bf..2e0bf9f664 100644
--- a/epan/dissectors/packet-gluster_cli.c
+++ b/epan/dissectors/packet-gluster_cli.c
@@ -71,7 +71,7 @@ gluster_cli_2_common_call(tvbuff_t *tvb,
static int
gluster_cli_2_common_reply(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, void* data _U_)
+ proto_tree *tree, void* data)
{
int offset = 0;
@@ -85,7 +85,7 @@ gluster_cli_2_common_reply(tvbuff_t *tvb, packet_info *pinfo,
static int
gluster_cli_2_probe_reply(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, void* data _U_)
+ proto_tree *tree, void* data)
{
int offset = 0;
@@ -114,7 +114,7 @@ gluster_cli_2_probe_call(tvbuff_t *tvb,
static int
gluster_cli_2_deprobe_reply(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, void* data _U_)
+ proto_tree *tree, void* data)
{
int offset = 0;
offset = gluster_dissect_common_reply(tvb, offset, pinfo, tree, data);
@@ -146,7 +146,7 @@ gluster_cli_2_fsm_log_call(tvbuff_t *tvb,
static int
gluster_cli_2_getwd_reply(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, void* data _U_)
+ proto_tree *tree, void* data)
{
int offset = 0;
@@ -178,7 +178,7 @@ gluster_cli_2_mount_call(tvbuff_t *tvb,
static int
gluster_cli_2_mount_reply(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, void* data _U_)
+ proto_tree *tree, void* data)
{
int offset = 0;
@@ -202,7 +202,7 @@ gluster_cli_2_umount_call(tvbuff_t *tvb,
static int
gluster_cli_dissect_common_reply(tvbuff_t *tvb,
- packet_info *pinfo _U_, proto_tree *tree, void* data _U_)
+ packet_info *pinfo, proto_tree *tree, void* data)
{
return gluster_dissect_common_reply(tvb, 0, pinfo, tree, data);
}