From 5635e93196698102cf37cb91b6690dcc66471f47 Mon Sep 17 00:00:00 2001 From: wmeier Date: Sun, 22 Mar 2009 20:55:31 +0000 Subject: P64 changes: Fix some cases for which size_t is not required git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27822 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-mip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'epan/dissectors/packet-mip.c') diff --git a/epan/dissectors/packet-mip.c b/epan/dissectors/packet-mip.c index 622b0315a2..fc359c10a5 100644 --- a/epan/dissectors/packet-mip.c +++ b/epan/dissectors/packet-mip.c @@ -355,12 +355,12 @@ dissect_mip_extensions( tvbuff_t *tvb, int offset, proto_tree *tree) proto_tree *ext_flags_tree; proto_tree *tp; proto_tree *pmipv4_tree; - size_t ext_len; + gint ext_len; guint8 ext_type; guint8 ext_subtype=0; guint8 pmipv4skipext_type; guint16 flags; - size_t hdrLen; + gint hdrLen; /* None of this really matters if we don't have a tree */ if (!tree) return; @@ -562,7 +562,7 @@ dissect_mip( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) proto_tree *flags_tree; guint8 type; guint16 flags; - size_t offset=0; + gint offset=0; const guint8 *reftime; tvbuff_t *next_tvb; -- cgit v1.2.3