dect
/
libpcap
Archived
13
0
Fork 0

Add missing left parenthesis.

This commit is contained in:
guy 2008-12-23 18:12:46 +00:00
parent 87d0db882e
commit fb218e8ff5
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
* Basic USB data struct
* By Paolo Abeni <paolo.abeni@email.it>
*
* @(#) $Header: /tcpdump/master/libpcap/pcap/usb.h,v 1.7 2008-12-23 18:03:22 guy Exp $
* @(#) $Header: /tcpdump/master/libpcap/pcap/usb.h,v 1.8 2008-12-23 18:12:46 guy Exp $
*/
#ifndef _PCAP_USB_STRUCTS_H__
@ -91,6 +91,6 @@ typedef struct _usb_header {
/*
* In DLT_USB_LINUX_MMAP captures, the header is padded to 64 bytes.
*/
#define MMAPPED_USB_HEADER_SIZE (sizeof (pcap_usb_header) + 63) & ~63)
#define MMAPPED_USB_HEADER_SIZE ((sizeof (pcap_usb_header) + 63) & ~63)
#endif