mesh: correct the return type

this is port of 2f15e3901a0338e114802885c43ba53207c18653
This commit is contained in:
Krzysztof Kopyściński
2021-01-12 14:05:19 +01:00
committed by Łukasz Rymanowski
parent 2272327168
commit 557c6f97ce
+1 -1
View File
@@ -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));