From 9cb86fda9cd916415d7852c1dbfdac6ef05e42ec Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 9 Jul 2005 00:53:17 +0000 Subject: Squelch various signed vs. unsigned warnings by: making pointers to byte data be "guint8 *" rather than "char *", and making buffers holding byte data arrays of "guint8" rather than arrays of "char"; making pointers to text strings "char *" rather than "guchar *"; appropriately casting pointers (cast to "guint8 *" when passing to routines expecting "guint8 *" or when assigning to "guint8 *"); making port-number preferences "guint"; making enum preferences "gint"; making hf_ variables "int". Clean up white space. svn path=/trunk/; revision=14884 --- epan/dissectors/packet-enc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'epan/dissectors/packet-enc.c') diff --git a/epan/dissectors/packet-enc.c b/epan/dissectors/packet-enc.c index 1fc1aa8197..7929084511 100644 --- a/epan/dissectors/packet-enc.c +++ b/epan/dissectors/packet-enc.c @@ -60,10 +60,10 @@ struct enchdr { static dissector_handle_t data_handle, ip_handle, ipv6_handle; /* header fields */ -static unsigned int proto_enc = -1; -static unsigned int hf_enc_af = -1; -static unsigned int hf_enc_spi = -1; -static unsigned int hf_enc_flags = -1; +static int proto_enc = -1; +static int hf_enc_af = -1; +static int hf_enc_spi = -1; +static int hf_enc_flags = -1; static gint ett_enc = -1; -- cgit v1.2.3