aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipv6.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2001-10-26 18:28:17 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2001-10-26 18:28:17 +0000
commit82c946ad85c1f801dd4f20a9078d91c584419c9a (patch)
treea82726e3867914409cfb8883ca39d8c99418dd0f /packet-ipv6.c
parent9f3d968087691b428769584552ba1b2706a09631 (diff)
Fix the rest of the signed/unsigned comparison warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4088 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ipv6.c')
-rw-r--r--packet-ipv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ipv6.c b/packet-ipv6.c
index 6d7cf9399a..cd2c310d4a 100644
--- a/packet-ipv6.c
+++ b/packet-ipv6.c
@@ -1,7 +1,7 @@
/* packet-ipv6.c
* Routines for IPv6 packet disassembly
*
- * $Id: packet-ipv6.c,v 1.63 2001/09/30 23:07:12 guy Exp $
+ * $Id: packet-ipv6.c,v 1.64 2001/10/26 18:28:16 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -126,7 +126,7 @@ ipv6_reassemble_init(void)
static int
dissect_routing6(tvbuff_t *tvb, int offset, proto_tree *tree) {
struct ip6_rthdr rt;
- int len;
+ guint len;
proto_tree *rthdr_tree;
proto_item *ti;
char buf[sizeof(struct ip6_rthdr0) + sizeof(struct e_in6_addr) * 23];