diff options
author | Maksim Yevmenkin <emax@FreeBSD.org> | 2005-01-04 20:13:48 +0000 |
---|---|---|
committer | Maksim Yevmenkin <emax@FreeBSD.org> | 2005-01-04 20:13:48 +0000 |
commit | 6a2dbfa47f6df7d9dda9aac2dc6345fb6fe5cefa (patch) | |
tree | 3dfb9cc35663c4259d1fbb20f9599092a26abcb1 /sys/netgraph | |
parent | 51c86fb5836035e374a05bac6bcef49a76a8a49c (diff) | |
download | src-6a2dbfa47f6df7d9dda9aac2dc6345fb6fe5cefa.tar.gz src-6a2dbfa47f6df7d9dda9aac2dc6345fb6fe5cefa.zip |
Rename 'class' field to 'uclass' in the ng_hci_inquiry_response structure.
class is a reserved word in C++
Submitted by: Markus Brueffer < markus AT brueffer DOT de >
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=139686
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/bluetooth/include/ng_hci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/bluetooth/include/ng_hci.h b/sys/netgraph/bluetooth/include/ng_hci.h index a304d04e0363..1fed75900414 100644 --- a/sys/netgraph/bluetooth/include/ng_hci.h +++ b/sys/netgraph/bluetooth/include/ng_hci.h @@ -1444,7 +1444,7 @@ typedef struct { u_int8_t page_scan_rep_mode; /* page scan rep. mode */ u_int8_t page_scan_period_mode; /* page scan period mode */ u_int8_t page_scan_mode; /* page scan mode */ - u_int8_t class[NG_HCI_CLASS_SIZE]; /* unit class */ + u_int8_t uclass[NG_HCI_CLASS_SIZE];/* unit class */ u_int16_t clock_offset; /* clock offset */ } __attribute__ ((packed)) ng_hci_inquiry_response; |