diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-07-25 16:40:13 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-07-25 16:40:13 -0700 |
commit | 62519e8ec1a55a73ae2cdd102ca6bf692a3ce036 (patch) | |
tree | 0d6f3bb38213efeda6d36a8e0d0105fd2e2a78d4 /pcap-bt-monitor-linux.c | |
parent | 14c30365077e4c42f857fb83f717ff6ee9de8c27 (diff) |
Squelch a signed vs. unsigned warning.
Diffstat (limited to 'pcap-bt-monitor-linux.c')
-rw-r--r-- | pcap-bt-monitor-linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-bt-monitor-linux.c b/pcap-bt-monitor-linux.c index 09abbe5c..ac54289d 100644 --- a/pcap-bt-monitor-linux.c +++ b/pcap-bt-monitor-linux.c @@ -82,7 +82,7 @@ bt_monitor_read(pcap_t *handle, int max_packets _U_, pcap_handler callback, u_ch ssize_t ret; struct pcap_pkthdr pkth; pcap_bluetooth_linux_monitor_header *bthdr; - char *pktd; + u_char *pktd; struct hci_mon_hdr hdr; pktd = (char *)handle->buffer + BT_CONTROL_SIZE; |