initializing unsigned variables to -1 is considered interesting

svn path=/trunk/; revision=12173
This commit is contained in:
Jörg Mayer 2004-10-01 12:35:55 +00:00
parent b972fd4658
commit 8c788146a0
2 changed files with 5 additions and 5 deletions

View File

@ -75,9 +75,9 @@ static int hf_bootp_cookie = -1;
static int hf_bootp_vendor = -1;
static int hf_bootp_dhcp = -1;
static guint ett_bootp = -1;
static guint ett_bootp_flags = -1;
static guint ett_bootp_option = -1;
static gint ett_bootp = -1;
static gint ett_bootp_flags = -1;
static gint ett_bootp_option = -1;
gboolean novell_string = FALSE;

View File

@ -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