summaryrefslogtreecommitdiff
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-03-02 21:28:29 +0000
committerEvan Huus <eapache@gmail.com>2013-03-02 21:28:29 +0000
commita668f359c8daf9a1f515fb21694b1d007a95cb7a (patch)
tree75aa0dc3ea025eea83a3771d9305d78c45e7f03c /epan/packet_info.h
parent16bda3caf43f22829a53ae486dcf3ff94f096d09 (diff)
downloadwireshark-a668f359c8daf9a1f515fb21694b1d007a95cb7a.tar.gz
Don't include wmem.h in packet_info.h, just use the struct name directly.
Otherwise wmem tweaks require rebuilding the entire tree for no particular reason. svn path=/trunk/; revision=48018
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index 5f63de7faa..b813b2dd4f 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -28,7 +28,6 @@
#include "frame_data.h"
#include "tvbuff.h"
#include "address.h"
-#include "wmem/wmem_core.h"
/* Also defined in wiretap/wtap.h */
#define P2P_DIR_UNKNOWN -1
@@ -214,7 +213,7 @@ typedef struct _packet_info {
GSList *frame_end_routines;
- wmem_allocator_t *pool; /**< Memory pool scoped to the pinfo struct */
+ struct _wmem_allocator_t *pool; /**< Memory pool scoped to the pinfo struct */
} packet_info;
/**< For old code that hasn't yet been changed. */