Bluetooth: mesh: Fix missing semicolon

Fix a missing semicolon at the end of a statement.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi 2018-09-05 13:38:19 +08:00 committed by Anas Nashif
commit 022f9157e8

View file

@ -390,7 +390,7 @@ int bt_mesh_health_srv_init(struct bt_mesh_model *model, bool primary)
return -EINVAL; return -EINVAL;
} }
model->pub->update = health_pub_update, model->pub->update = health_pub_update;
k_delayed_work_init(&srv->attn_timer, attention_off); k_delayed_work_init(&srv->attn_timer, attention_off);