@@ -177,7 +177,7 @@ mca_pml_ubcl_request_cancel(struct ompi_request_t *request, int complete)
177177 return OMPI_SUCCESS ;
178178}
179179
180- int mca_pml_ubcl_request_complete (struct ompi_request_t * request )
180+ static int mca_pml_ubcl_request_complete (struct ompi_request_t * request )
181181{
182182 /* Null check */
183183 if (MPI_REQUEST_NULL == request ) {
@@ -248,7 +248,7 @@ void ubcl_request_send_complete_cb(ubcl_status_t status, void *cb_data)
248248 }
249249
250250 OPAL_OUTPUT_VERBOSE ((50 , mca_pml_ubcl_component .output ,
251- "PML/UBCL SEND_COMPLETE pml_req=%p mpi_tag=%x\n" , req , req -> tag ));
251+ "PML/UBCL SEND_COMPLETE pml_req=%p mpi_tag=%x\n" , ( void * ) req , req -> tag ));
252252
253253 /** mca_pml_ubcl_request_complete((ompi_request_t *) cb_data); */
254254}
@@ -284,7 +284,7 @@ void ubcl_request_recv_complete_cb(ubcl_status_t status, void *cb_data)
284284 ompi_request_complete (& (req -> ompi_req ), true);
285285
286286 OPAL_OUTPUT_VERBOSE ((50 , mca_pml_ubcl_component .output ,
287- "PML/UBCL RECV_COMPLETE pml_req=%p mpi_tag=%d\n" , req , req -> tag ));
287+ "PML/UBCL RECV_COMPLETE pml_req=%p mpi_tag=%d\n" , ( void * ) req , req -> tag ));
288288
289289 /** mca_pml_ubcl_request_complete((ompi_request_t *) cb_data); */
290290}
@@ -296,7 +296,7 @@ void ubcl_request_recv_complete_cb(ubcl_status_t status, void *cb_data)
296296void mca_pml_ubcl_request_finalize (mca_pml_ubcl_request_t * req )
297297{
298298 OPAL_OUTPUT_VERBOSE ((50 , mca_pml_ubcl_component .output ,
299- "PML/UBCL REQUEST_FINALIZE BEGIN pml_req=%p mpi_tag=%x\n" , req , req -> tag ));
299+ "PML/UBCL REQUEST_FINALIZE BEGIN pml_req=%p mpi_tag=%x\n" , ( void * ) req , req -> tag ));
300300
301301 opal_convertor_cleanup (& req -> convertor );
302302 OBJ_DESTRUCT (& req -> convertor );
@@ -308,7 +308,7 @@ void mca_pml_ubcl_request_finalize(mca_pml_ubcl_request_t *req)
308308 opal_free_list_return (& mca_pml_ubcl_component .pml_req_free_list , (opal_free_list_item_t * ) req );
309309
310310 OPAL_OUTPUT_VERBOSE (
311- (50 , mca_pml_ubcl_component .output , "PML/UBCL REQUEST_FINALIZED %p\n" , req ));
311+ (50 , mca_pml_ubcl_component .output , "PML/UBCL REQUEST_FINALIZED %p\n" , ( void * ) req ));
312312}
313313
314314
0 commit comments