summaryrefslogtreecommitdiff
path: root/epan/tap.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-04-16 04:34:07 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-04-16 04:34:07 +0000
commit1295039ee92089af47f3711ef42c3e9f7d77441b (patch)
treeabbc25f3f887dc99374d38bffeb295dd1713e481 /epan/tap.h
parent7279a4243170652e77b3314379da930c6ca603ee (diff)
downloadwireshark-1295039ee92089af47f3711ef42c3e9f7d77441b.tar.gz
Wireshark now requires support for 64-bit types so there's no need to #ifdef
around them. Print 64-bit types using the PRI macros; add inttypes.h to tap.h (if necessary) to pick up those macros for all the taps. svn path=/trunk/; revision=21442
Diffstat (limited to 'epan/tap.h')
-rw-r--r--epan/tap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/tap.h b/epan/tap.h
index 9e50c65eef..30dfffb9f9 100644
--- a/epan/tap.h
+++ b/epan/tap.h
@@ -27,6 +27,10 @@
#include "epan/epan.h"
+#ifdef INTTYPES_H_DEFINES_FORMATS
+#include <inttypes.h>
+#endif
+
/* With MSVC and a libwireshark.dll, we need a
* special declaration of num_tap_filters.
*/