@@ -215,7 +215,7 @@ setup_gather_buffers_binomial(struct ompi_communicator_t *comm,
215215 opal_output_verbose (30 , ompi_coll_base_framework .framework_output ,
216216 "%s:%d:vrank(%d): root - gather_buf(%p) - gather_bytes(%lu)=packed_size(%ld) * size(%d)" ,
217217 __FILE__ , __LINE__ , vrank ,
218- request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
218+ ( void * ) request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
219219 request -> u .gather .packed_size , request -> u .gather .size );
220220 } else if (bmtree -> tree_nextsize ) {
221221 /*
@@ -238,7 +238,7 @@ setup_gather_buffers_binomial(struct ompi_communicator_t *comm,
238238 opal_output_verbose (30 , ompi_coll_base_framework .framework_output ,
239239 "%s:%d:vrank(%d): nonleaf - gather_buf(%p) - gather_bytes(%lu)=packed_size(%ld) * (bmtree->tree_numdescendants(%d) + 1)" ,
240240 __FILE__ , __LINE__ , vrank ,
241- request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
241+ ( void * ) request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
242242 request -> u .gather .packed_size , bmtree -> tree_numdescendants );
243243 } else {
244244 /* leaf nodes, allocate space to pack into and put from */
@@ -257,7 +257,7 @@ setup_gather_buffers_binomial(struct ompi_communicator_t *comm,
257257 opal_output_verbose (30 , ompi_coll_base_framework .framework_output ,
258258 "%s:%d:vrank(%d): leaf - gather_buf(%p) - gather_bytes(%lu)=packed_size(%ld)" ,
259259 __FILE__ , __LINE__ , vrank ,
260- request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
260+ ( void * ) request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
261261 request -> u .gather .packed_size );
262262 }
263263
@@ -316,7 +316,7 @@ setup_gather_buffers_linear(struct ompi_communicator_t *comm,
316316 opal_output_verbose (30 , ompi_coll_base_framework .framework_output ,
317317 "%s:%d:rank(%d): root - gather_buf(%p) - gather_bytes(%lu)=packed_size(%ld) * size(%d)" ,
318318 __FILE__ , __LINE__ , request -> u .gather .my_rank ,
319- request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
319+ ( void * ) request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
320320 request -> u .gather .packed_size , request -> u .gather .size );
321321 } else {
322322 /* non-root nodes, allocate space to pack into and put from */
@@ -334,7 +334,7 @@ setup_gather_buffers_linear(struct ompi_communicator_t *comm,
334334 opal_output_verbose (30 , ompi_coll_base_framework .framework_output ,
335335 "%s:%d:rank(%d): leaf - gather_buf(%p) - gather_bytes(%lu)=packed_size(%ld)" ,
336336 __FILE__ , __LINE__ , request -> u .gather .my_rank ,
337- request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
337+ ( void * ) request -> u .gather .gather_buf , request -> u .gather .gather_bytes ,
338338 request -> u .gather .packed_size );
339339 }
340340
0 commit comments