aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-usb.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-07-31 01:06:50 +0000
committerEvan Huus <eapache@gmail.com>2013-07-31 01:06:50 +0000
commitbc7c14a2a17170db658046d4f2c7677907f44c02 (patch)
treeb2b98c108633b041b118d522da416fd1a54332e3 /epan/dissectors/packet-usb.h
parent9bb17b7b2b62c56349f7893f6db4bec0b71fc9c8 (diff)
Convert the USB dissectors to wmem.
svn path=/trunk/; revision=51042
Diffstat (limited to 'epan/dissectors/packet-usb.h')
-rw-r--r--epan/dissectors/packet-usb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-usb.h b/epan/dissectors/packet-usb.h
index cd5c66ad6a..20a75d578e 100644
--- a/epan/dissectors/packet-usb.h
+++ b/epan/dissectors/packet-usb.h
@@ -24,6 +24,8 @@
#ifndef __PACKET_USB_H__
#define __PACKET_USB_H__
+#include <epan/wmem/wmem.h>
+
typedef struct _usb_address_t {
guint32 device;
guint32 endpoint;
@@ -82,7 +84,7 @@ struct _usb_conv_info_t {
guint8 interfaceNum; /* Most recent interface number */
guint16 deviceVendor; /* Device Descriptor - USB Vendor ID */
guint32 deviceProduct; /* Device Descriptor - USB Product ID - MSBs only for encoding unknown */
- emem_tree_t *transactions;
+ wmem_tree_t *transactions;
usb_trans_info_t *usb_trans_info; /* pointer to the current transaction */
void *class_data; /* private class/id decode data */
};