From 0e18a150372d900ce01a88ab2cb64991a968395e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Narajowski?= Date: Wed, 30 Jan 2019 14:45:51 +0100 Subject: [PATCH] mesh: Fix missing semicolon Fix a missing semicolon at the end of a statement. --- nimble/host/mesh/src/health_srv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimble/host/mesh/src/health_srv.c b/nimble/host/mesh/src/health_srv.c index 32c2443ba..97e3e043b 100644 --- a/nimble/host/mesh/src/health_srv.c +++ b/nimble/host/mesh/src/health_srv.c @@ -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);