Fix typo in bluetooth.3

Do not use reserved C++ keyword "new"

MFC after:	1 month
This commit is contained in:
Maksim Yevmenkin 2009-10-26 17:27:30 +00:00
parent bdb403798c
commit 808de0ae26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=198492
2 changed files with 3 additions and 3 deletions

View file

@ -272,7 +272,7 @@ otherwise 0.
.Pp
The
.Fn bt_devinfo
function populates prodivded
function populates provided
.Vt bt_devinfo
structure with the information about given Bluetooth device.
The caller is expected to pass Bluetooth device name in the

View file

@ -163,8 +163,8 @@ int bt_devclose(int s);
int bt_devsend (int s, uint16_t opcode, void *param, size_t plen);
ssize_t bt_devrecv (int s, void *buf, size_t size, time_t to);
int bt_devreq (int s, struct bt_devreq *r, time_t to);
int bt_devfilter(int s, struct bt_devfilter const *new,
struct bt_devfilter *old);
int bt_devfilter(int s, struct bt_devfilter const *newp,
struct bt_devfilter *oldp);
void bt_devfilter_pkt_set(struct bt_devfilter *filter, uint8_t type);
void bt_devfilter_pkt_clr(struct bt_devfilter *filter, uint8_t type);
int bt_devfilter_pkt_tst(struct bt_devfilter const *filter, uint8_t type);