aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-11-02 13:31:24 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-11-02 13:31:24 +0000
commit925cba4e91ea0f44970462d30b62533c8a100e24 (patch)
tree4ffdc5c59601e17cf53f01280086a558a5f54a4f /epan
parentc09657cd7f0bd135b426e50be4cc3578edb44275 (diff)
Fix build (missing some _U_)
svn path=/trunk/; revision=53048
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-isup.c2
-rw-r--r--epan/dissectors/packet-multipart.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-isup.c b/epan/dissectors/packet-isup.c
index 3bd5325447..28b871ee94 100644
--- a/epan/dissectors/packet-isup.c
+++ b/epan/dissectors/packet-isup.c
@@ -10735,7 +10735,7 @@ dissect_bicc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
static int
-dissect_application_isup(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
+dissect_application_isup(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
/* Set up structures needed to add the protocol subtree and manage it */
proto_item *ti;
diff --git a/epan/dissectors/packet-multipart.c b/epan/dissectors/packet-multipart.c
index a1794c7181..5df778e834 100644
--- a/epan/dissectors/packet-multipart.c
+++ b/epan/dissectors/packet-multipart.c
@@ -797,7 +797,7 @@ process_body_part(proto_tree *tree, tvbuff_t *tvb, const guint8 *boundary,
* Call this method to actually dissect the multipart body.
* NOTE - Only do so if a boundary string has been found!
*/
-static int dissect_multipart(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
+static int dissect_multipart(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
proto_tree *subtree = NULL;
proto_item *ti = NULL;