summaryrefslogtreecommitdiff
path: root/epan/ftypes
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-06-28 17:23:07 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-06-28 17:23:07 +0000
commit09a741cb17ceae1d4cf27b11e2e7173349f04064 (patch)
tree663f3b0adc9c42046467bff5c55a7ccac77d12ae /epan/ftypes
parent8e03447dd42fba34f78e164c5a9fb2d2b1521114 (diff)
downloadwireshark-09a741cb17ceae1d4cf27b11e2e7173349f04064.tar.gz
Add FT_INT64 to IS_FT_INT and FT_UINT_64 to IS_FT_UINT.
svn path=/trunk/; revision=25623
Diffstat (limited to 'epan/ftypes')
-rw-r--r--epan/ftypes/ftypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/ftypes/ftypes.h b/epan/ftypes/ftypes.h
index 2b7d6f0388..c2f52186ae 100644
--- a/epan/ftypes/ftypes.h
+++ b/epan/ftypes/ftypes.h
@@ -66,8 +66,8 @@ enum ftenum {
FT_NUM_TYPES /* last item number plus one */
};
-#define IS_FT_INT(ft) ((ft)==FT_INT8||(ft)==FT_INT16||(ft)==FT_INT24||(ft)==FT_INT32)
-#define IS_FT_UINT(ft) ((ft)==FT_UINT8||(ft)==FT_UINT16||(ft)==FT_UINT24||(ft)==FT_UINT32||(ft)==FT_FRAMENUM)
+#define IS_FT_INT(ft) ((ft)==FT_INT8||(ft)==FT_INT16||(ft)==FT_INT24||(ft)==FT_INT32||(ft)==FT_INT64)
+#define IS_FT_UINT(ft) ((ft)==FT_UINT8||(ft)==FT_UINT16||(ft)==FT_UINT24||(ft)==FT_UINT32||(ft)==FT_UINT64||(ft)==FT_FRAMENUM)
#define IS_FT_TIME(ft) ((ft)==FT_ABSOLUTE_TIME||(ft)==FT_RELATIVE_TIME)
#define IS_FT_STRING(ft) ((ft)==FT_STRING||(ft)==FT_STRINGZ)