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:
Luiz Augusto von Dentz 2015-05-04 16:23:56 +03:00 committed by Anas Nashif
commit 4202d9a7bf

View file

@ -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: