mesh: Fix missing semicolon

Fix a missing semicolon at the end of a statement.
This commit is contained in:
Michał Narajowski
2019-01-31 17:50:26 +01:00
parent 2bcb0ddbf4
commit 0e18a15037
+1 -1
View File
@@ -394,7 +394,7 @@ int bt_mesh_health_srv_init(struct bt_mesh_model *model, bool primary)
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_add_arg(&srv->attn_timer, srv);