mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 07:28:38 +08:00
wireless/bluetooth/bt_ioctl.c: Fix a syslog format
This commit is contained in:
parent
e8ae56d9ea
commit
05127a2a33
1 changed files with 1 additions and 1 deletions
|
@ -477,7 +477,7 @@ int btnet_ioctl(FAR struct net_driver_s *netdev, int cmd, unsigned long arg)
|
|||
FAR struct btreq_s *btreq = (FAR struct btreq_s *)((uintptr_t)arg);
|
||||
int ret;
|
||||
|
||||
wlinfo("cmd=%04x arg=%ul\n", cmd, arg);
|
||||
wlinfo("cmd=%04x arg=%lu\n", cmd, arg);
|
||||
DEBUGASSERT(netdev != NULL && netdev->d_private != NULL);
|
||||
|
||||
if (btreq == NULL)
|
||||
|
|
Loading…
Reference in a new issue