wireless/bluetooth/bt_att.c: Fix a syslog format
This commit is contained in:
parent
46c52132c4
commit
e8ae56d9ea
|
@ -1865,7 +1865,7 @@ FAR struct bt_buf_s *bt_att_create_pdu(FAR struct bt_conn_s *conn,
|
||||||
|
|
||||||
if (len + sizeof(op) > att->mtu)
|
if (len + sizeof(op) > att->mtu)
|
||||||
{
|
{
|
||||||
wlwarn("ATT MTU exceeded, max %u, wanted %u\n", att->mtu, len);
|
wlwarn("ATT MTU exceeded, max %u, wanted %zu\n", att->mtu, len);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue