Bluetooth: GATT: Fix representing handle with uint8_t

GATT Handles are always 16 bits long.

Change-Id: I745197f7d7d3af52cb44e5be87b02471a23e9d73
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
Luiz Augusto von Dentz 2015-07-28 16:02:24 +03:00 committed by Anas Nashif
commit 870e466338

View file

@ -298,7 +298,7 @@ int bt_gatt_attr_read_cep(struct bt_conn *conn,
struct notify_data {
const void *data;
size_t len;
uint8_t handle;
uint16_t handle;
};
static uint8_t notify_cb(const struct bt_gatt_attr *attr, void *user_data)