ble_mesh: correct the return type [Zephyr]

This commit is contained in:
lly 2020-06-01 14:08:21 +08:00
parent 8271ae4a1e
commit 1a3c315d2f

View file

@ -741,7 +741,7 @@ static bool model_has_dst(struct bt_mesh_model *model, u16_t dst)
if (BLE_MESH_ADDR_IS_UNICAST(dst)) { if (BLE_MESH_ADDR_IS_UNICAST(dst)) {
return (dev_comp->elem[model->elem_idx].addr == dst); return (dev_comp->elem[model->elem_idx].addr == dst);
} else if (BLE_MESH_ADDR_IS_GROUP(dst) || BLE_MESH_ADDR_IS_VIRTUAL(dst)) { } else if (BLE_MESH_ADDR_IS_GROUP(dst) || BLE_MESH_ADDR_IS_VIRTUAL(dst)) {
return bt_mesh_model_find_group(model, dst); return !!bt_mesh_model_find_group(model, dst);
} }
return (model->elem_idx == 0 && bt_mesh_fixed_group_match(dst)); return (model->elem_idx == 0 && bt_mesh_fixed_group_match(dst));