aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dhcpv6.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-10-01 12:35:55 +0000
committerJörg Mayer <jmayer@loplof.de>2004-10-01 12:35:55 +0000
commit8c788146a0cd21ca0e867784741d53b908193034 (patch)
treecc2d4461377c4dbc90fd0f43bc2e6baec3292fcf /epan/dissectors/packet-dhcpv6.c
parentb972fd465850489ab72b15ce549a93e8e2737cec (diff)
initializing unsigned variables to -1 is considered interesting
svn path=/trunk/; revision=12173
Diffstat (limited to 'epan/dissectors/packet-dhcpv6.c')
-rw-r--r--epan/dissectors/packet-dhcpv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dhcpv6.c b/epan/dissectors/packet-dhcpv6.c
index 955b0507b4..d4c9db1090 100644
--- a/epan/dissectors/packet-dhcpv6.c
+++ b/epan/dissectors/packet-dhcpv6.c
@@ -48,8 +48,8 @@
static int proto_dhcpv6 = -1;
static int hf_dhcpv6_msgtype = -1;
-static guint ett_dhcpv6 = -1;
-static guint ett_dhcpv6_option = -1;
+static gint ett_dhcpv6 = -1;
+static gint ett_dhcpv6_option = -1;
#define UDP_PORT_DHCPV6_DOWNSTREAM 546
#define UDP_PORT_DHCPV6_UPSTREAM 547