mesh: Fix missing semicolon for debug log

Without this it's not possible to build cfg_srv.c with debug logs
enabled.
This commit is contained in:
Michał Narajowski
2018-08-20 16:05:28 +02:00
parent b03c606220
commit 3dd8190cb5
+1 -1
View File
@@ -1013,7 +1013,7 @@ static void relay_set(struct bt_mesh_model *model,
cfg->relay, change ? "changed" : "not changed",
cfg->relay_retransmit,
BT_MESH_TRANSMIT_COUNT(cfg->relay_retransmit),
BT_MESH_TRANSMIT_INT(cfg->relay_retransmit))
BT_MESH_TRANSMIT_INT(cfg->relay_retransmit));
sub = bt_mesh_subnet_get(cfg->hb_pub.net_idx);
if ((cfg->hb_pub.feat & BT_MESH_FEAT_RELAY) && sub && change) {