aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wol.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-12-10 03:56:51 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-12-10 03:56:51 +0000
commitaf4cbd00a024d4b90f2ad2e36afc38d8c8aa702e (patch)
tree8a18571ce58456b2d36d0899dee7a0fcaa93e7e4 /epan/dissectors/packet-wol.c
parent6e3732104203ed72004d697686380e20db0898ef (diff)
Remove _U_ from dissect_wol's and dissect_wolheur's data argument; they both pass it to dissect_wol_pdu, which doesn't actually use it, but technically they do.
svn path=/trunk/; revision=53900
Diffstat (limited to 'epan/dissectors/packet-wol.c')
-rw-r--r--epan/dissectors/packet-wol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-wol.c b/epan/dissectors/packet-wol.c
index 8a87c68a9e..055b8e0fe9 100644
--- a/epan/dissectors/packet-wol.c
+++ b/epan/dissectors/packet-wol.c
@@ -256,13 +256,13 @@ dissect_wol_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
}
static int
-dissect_wol(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
+dissect_wol(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
{
return dissect_wol_pdu(tvb, pinfo, tree, data);
}
static gboolean
-dissect_wolheur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
+dissect_wolheur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
{
if (dissect_wol_pdu(tvb, pinfo, tree, data) > 0)
return TRUE;