aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-integer.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-07-13 00:55:58 +0000
committerGuy Harris <guy@alum.mit.edu>2001-07-13 00:55:58 +0000
commitf7b50ca7544eb3776486375fb15b416a5e88d87b (patch)
tree7296d508f19728911cce7937d426784768575b2e /epan/ftypes/ftype-integer.c
parent82a553e9c9275c9074b087b63e976ef63259dba9 (diff)
From Joerg Mayer:
* gcc 3.0 warning fixes: - text2pcap.c: The number of characters to scan should probably not be 0 - wiretap/csids.c: using preincrement on a variable used on both sides of an assignment might be undefined by the C99(?) standard * turn on additional warnings for epan and wiretap too - epan/configure.in - wiretap/configure.in * Fix some warnings (missing includes, signed/unsigned, missing initializers) found by turning on the warnings - all other files :-) svn path=/trunk/; revision=3709
Diffstat (limited to 'epan/ftypes/ftype-integer.c')
-rw-r--r--epan/ftypes/ftype-integer.c32
1 files changed, 31 insertions, 1 deletions
diff --git a/epan/ftypes/ftype-integer.c b/epan/ftypes/ftype-integer.c
index c0da733cea..fcfd996e97 100644
--- a/epan/ftypes/ftype-integer.c
+++ b/epan/ftypes/ftype-integer.c
@@ -1,5 +1,5 @@
/*
- * $Id: ftype-integer.c,v 1.5 2001/03/03 00:33:24 guy Exp $
+ * $Id: ftype-integer.c,v 1.6 2001/07/13 00:55:56 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -232,6 +232,9 @@ ftype_register_integers(void)
u_cmp_ge,
u_cmp_lt,
u_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t uint16_type = {
"FT_UINT16",
@@ -255,6 +258,9 @@ ftype_register_integers(void)
u_cmp_ge,
u_cmp_lt,
u_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t uint24_type = {
"FT_UINT24",
@@ -278,6 +284,9 @@ ftype_register_integers(void)
u_cmp_ge,
u_cmp_lt,
u_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t uint32_type = {
"FT_UINT32",
@@ -301,6 +310,9 @@ ftype_register_integers(void)
u_cmp_ge,
u_cmp_lt,
u_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t int8_type = {
"FT_INT8",
@@ -324,6 +336,9 @@ ftype_register_integers(void)
s_cmp_ge,
s_cmp_lt,
s_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t int16_type = {
"FT_INT16",
@@ -347,6 +362,9 @@ ftype_register_integers(void)
s_cmp_ge,
s_cmp_lt,
s_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t int24_type = {
"FT_INT24",
@@ -370,6 +388,9 @@ ftype_register_integers(void)
s_cmp_ge,
s_cmp_lt,
s_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t int32_type = {
"FT_INT32",
@@ -393,6 +414,9 @@ ftype_register_integers(void)
s_cmp_ge,
s_cmp_lt,
s_cmp_le,
+
+ NULL,
+ NULL,
};
static ftype_t boolean_type = {
"FT_BOOLEAN",
@@ -416,6 +440,9 @@ ftype_register_integers(void)
NULL,
NULL,
NULL,
+
+ NULL,
+ NULL,
};
static ftype_t ipxnet_type = {
@@ -440,6 +467,9 @@ ftype_register_integers(void)
u_cmp_ge,
u_cmp_lt,
u_cmp_le,
+
+ NULL,
+ NULL,
};