@@ -202,7 +202,7 @@ static void block_report(struct bt_mesh_blob_srv *srv)
202
202
}
203
203
}
204
204
205
- bt_mesh_model_send (srv -> mod , & ctx , & buf , & report_cb , srv );
205
+ ( void ) bt_mesh_model_send (srv -> mod , & ctx , & buf , & report_cb , srv );
206
206
}
207
207
208
208
static void phase_set (struct bt_mesh_blob_srv * srv ,
@@ -314,7 +314,7 @@ static void xfer_status_rsp(struct bt_mesh_blob_srv *srv,
314
314
315
315
send :
316
316
ctx -> send_ttl = srv -> state .ttl ;
317
- bt_mesh_model_send (srv -> mod , ctx , & buf , NULL , NULL );
317
+ ( void ) bt_mesh_model_send (srv -> mod , ctx , & buf , NULL , NULL );
318
318
}
319
319
320
320
static void block_status_rsp (struct bt_mesh_blob_srv * srv ,
@@ -379,7 +379,7 @@ static void block_status_rsp(struct bt_mesh_blob_srv *srv,
379
379
ctx -> send_ttl = srv -> state .ttl ;
380
380
}
381
381
382
- bt_mesh_model_send (srv -> mod , ctx , & buf , NULL , NULL );
382
+ ( void ) bt_mesh_model_send (srv -> mod , ctx , & buf , NULL , NULL );
383
383
}
384
384
385
385
static int handle_xfer_get (struct bt_mesh_model * mod , struct bt_mesh_msg_ctx * ctx ,
@@ -789,7 +789,7 @@ static int handle_info_get(struct bt_mesh_model *mod, struct bt_mesh_msg_ctx *ct
789
789
ctx -> send_ttl = srv -> state .ttl ;
790
790
}
791
791
792
- bt_mesh_model_send (srv -> mod , ctx , & rsp , NULL , NULL );
792
+ ( void ) bt_mesh_model_send (srv -> mod , ctx , & rsp , NULL , NULL );
793
793
794
794
return 0 ;
795
795
}
0 commit comments