From fb218e8ff5dcc191c9f523912023d8fc620f1dc8 Mon Sep 17 00:00:00 2001 From: guy Date: Tue, 23 Dec 2008 18:12:46 +0000 Subject: [PATCH] Add missing left parenthesis. --- pcap/usb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcap/usb.h b/pcap/usb.h index e0b509f..4c038eb 100644 --- a/pcap/usb.h +++ b/pcap/usb.h @@ -30,7 +30,7 @@ * Basic USB data struct * By Paolo Abeni * - * @(#) $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