aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mip.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-22 20:55:31 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-22 20:55:31 +0000
commit5635e93196698102cf37cb91b6690dcc66471f47 (patch)
tree70c7600431ace9c6831016767308c26e2f52fbfd /epan/dissectors/packet-mip.c
parentf5f8a16e5b3df012bcb5a355b0b2c5cef5d2a30d (diff)
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
Diffstat (limited to 'epan/dissectors/packet-mip.c')
-rw-r--r--epan/dissectors/packet-mip.c6
1 files changed, 3 insertions, 3 deletions
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;