File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ struct bt_mesh_cdb_subnet *bt_mesh_cdb_subnet_get(uint16_t net_idx)
227
227
228
228
void bt_mesh_cdb_subnet_store (const struct bt_mesh_cdb_subnet * sub )
229
229
{
230
- if MYNEWT_VAL (BLE_MESH_SETTINGS ) {
230
+ if ( MYNEWT_VAL (BLE_MESH_SETTINGS ) ) {
231
231
bt_mesh_store_cdb_subnet (sub );
232
232
}
233
233
}
@@ -309,7 +309,7 @@ struct bt_mesh_cdb_node *bt_mesh_cdb_node_get(uint16_t addr)
309
309
310
310
void bt_mesh_cdb_node_store (const struct bt_mesh_cdb_node * node )
311
311
{
312
- if MYNEWT_VAL (BLE_MESH_SETTINGS ) {
312
+ if ( MYNEWT_VAL (BLE_MESH_SETTINGS ) ) {
313
313
bt_mesh_store_cdb_node (node );
314
314
}
315
315
}
@@ -382,7 +382,7 @@ struct bt_mesh_cdb_app_key *bt_mesh_cdb_app_key_get(uint16_t app_idx)
382
382
383
383
void bt_mesh_cdb_app_key_store (const struct bt_mesh_cdb_app_key * key )
384
384
{
385
- if MYNEWT_VAL (BLE_MESH_SETTINGS ) {
385
+ if ( MYNEWT_VAL (BLE_MESH_SETTINGS ) ) {
386
386
bt_mesh_store_cdb_app_key (key );
387
387
}
388
388
}
You can’t perform that action at this time.
0 commit comments