From ebda6f06b74af80d4d5b33224825628d1600e871 Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Fri, 14 Sep 2012 14:40:47 +0000 Subject: Try to make the buildbot happy. svn path=/trunk/; revision=44901 --- epan/dissectors/packet-ip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-ip.c') diff --git a/epan/dissectors/packet-ip.c b/epan/dissectors/packet-ip.c index 42f93be2ba..b4e69a7ff7 100644 --- a/epan/dissectors/packet-ip.c +++ b/epan/dissectors/packet-ip.c @@ -2409,7 +2409,7 @@ dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree) } static gboolean -dissect_ip_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data) +dissect_ip_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) { int length, tot_length; guint8 oct, version, ihl; @@ -2440,7 +2440,7 @@ dissect_ip_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data) } tot_length = tvb_get_ntohs(tvb,2); - if(tot_length != tvb_reported_length(tvb)){ + if(tot_length != (int)tvb_reported_length(tvb)){ return FALSE; } -- cgit v1.2.3