Fixes the following error:
error: cast from 'const char *' to 'bdaddr_t *' drops const qualifier [-Werror,-Wcast-qual]This is needed to address some compiler errors cleanly, where consumer
92 | NG_HCI_BDADDR_ANY,
| ^
/usr/include/netgraph/bluetooth/include/ng_hci.h:451:39: note: expanded from macro 'NG_HCI_BDADDR_ANY'
451 | #define NG_HCI_BDADDR_ANY ((bdaddr_p) "\000\000\000\000\000\000")functions want this address to be a const pointer.
Sponsored by: The FreeBSD Foundation
MFC after: 23 days