u_int32_t gives error on Windows assuming guint32 will do.
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 10 Oct 2006 21:46:44 +0000 (21:46 +0000)
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 10 Oct 2006 21:46:44 +0000 (21:46 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19482 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-usb.c

index ef658a6b4eb77554472d34ae632c5b1ca896a9e4..eb1bc9294dbfe34d7071573892244cec51b60078 100644 (file)
@@ -44,18 +44,18 @@ typedef enum {
 } urb_type_t;
 
 typedef struct usb_header {
-  u_int32_t urb_type;  
-  u_int32_t device_address;
-  u_int32_t endpoint_number;
-  u_int32_t setup_packet;
+  guint32 urb_type;  
+  guint32 device_address;
+  guint32 endpoint_number;
+  guint32 setup_packet;
 } usb_header_t;
 
 typedef struct usb_setup {
-  u_int32_t bmRequestType;
-  u_int32_t bRequest;
-  u_int32_t wValue;
-  u_int32_t wIndex;
-  u_int32_t wLength;
+  guint32 bmRequestType;
+  guint32 bRequest;
+  guint32 wValue;
+  guint32 wIndex;
+  guint32 wLength;
 } usb_setup_t;