mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-09-21 16:37:23 +00:00
mesh: correct the return type
this is port of 2f15e3901a0338e114802885c43ba53207c18653
This commit is contained in:
committed by
Łukasz Rymanowski
parent
2272327168
commit
557c6f97ce
@@ -483,7 +483,7 @@ static bool model_has_dst(struct bt_mesh_model *mod, u16_t dst)
|
||||
if (BT_MESH_ADDR_IS_UNICAST(dst)) {
|
||||
return (dev_comp->elem[mod->elem_idx].addr == dst);
|
||||
} else if (BT_MESH_ADDR_IS_GROUP(dst) || BT_MESH_ADDR_IS_VIRTUAL(dst)) {
|
||||
return bt_mesh_model_find_group(&mod, dst);
|
||||
return !!bt_mesh_model_find_group(&mod, dst);
|
||||
}
|
||||
|
||||
return (mod->elem_idx == 0 && bt_mesh_fixed_group_match(dst));
|
||||
|
||||
Reference in New Issue
Block a user