diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-07-25 16:35:38 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-07-25 16:35:38 -0700 |
commit | 14c30365077e4c42f857fb83f717ff6ee9de8c27 (patch) | |
tree | 09c1edff6833ce545b0ef77a1ba62098e55e17ef /pcap-usb-linux.c | |
parent | 98ec1decb14c3d76a088e0f1b1fe5c275726144c (diff) |
Squelch still more signed vs. unsigned warnings.
Diffstat (limited to 'pcap-usb-linux.c')
-rw-r--r-- | pcap-usb-linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-usb-linux.c b/pcap-usb-linux.c index 8d06a96c..fb1188a7 100644 --- a/pcap-usb-linux.c +++ b/pcap-usb-linux.c @@ -887,7 +887,7 @@ usb_read_linux_mmap(pcap_t *handle, int max_packets, pcap_handler callback, u_ch pcap_usb_header* hdr; int nflush = 0; int packets = 0; - int clen, max_clen; + u_int clen, max_clen; max_clen = handle->snapshot - sizeof(pcap_usb_header); |