summaryrefslogtreecommitdiff
path: root/epan/ftypes/ftype-double.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-double.c
parent82a553e9c9275c9074b087b63e976ef63259dba9 (diff)
downloadwireshark-f7b50ca7544eb3776486375fb15b416a5e88d87b.tar.gz
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-double.c')
-rw-r--r--epan/ftypes/ftype-double.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/ftypes/ftype-double.c b/epan/ftypes/ftype-double.c
index ba19a8d8e7..8fa42e0032 100644
--- a/epan/ftypes/ftype-double.c
+++ b/epan/ftypes/ftype-double.c
@@ -1,6 +1,6 @@
/*
*
- * $Id: ftype-double.c,v 1.3 2001/03/02 17:17:56 gram Exp $
+ * $Id: ftype-double.c,v 1.4 2001/07/13 00:55:56 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -140,6 +140,9 @@ ftype_register_double(void)
cmp_ge,
cmp_lt,
cmp_le,
+
+ NULL,
+ NULL,
};
ftype_register(FT_DOUBLE, &double_type);