wireless/bluetooth/bt_att.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi 2020-11-23 17:25:08 +09:00 committed by Xiang Xiao
parent 46c52132c4
commit e8ae56d9ea
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }