Bluetooth: Fix missing parentesis to sizeof
Change-Id: I31e7b8fb3e463371950b538a51676baa77b671ba Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
parent
496147e88c
commit
4202d9a7bf
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ void bt_att_recv(struct bt_conn *conn, struct bt_buf *buf)
|
|||
|
||||
BT_DBG("Received ATT code %u len %u\n", buf->len);
|
||||
|
||||
bt_buf_pull(buf, sizeof*hdr);
|
||||
bt_buf_pull(buf, sizeof(*hdr));
|
||||
|
||||
switch (hdr->code) {
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue