Skip to content

Commit 2fb39eb

Browse files
committed
Fix format specifier mismatch in osc/rdma
Signed-off-by: Joseph Schuchart <schuchart@icl.utk.edu>
1 parent 6564419 commit 2fb39eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/osc/rdma/osc_rdma_accumulate.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ static inline int ompi_osc_rdma_gacc_amo (ompi_osc_rdma_module_t *module, ompi_o
369369
void *to_free = NULL;
370370
int ret;
371371

372-
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "using network atomics for accumulate operation with count %d", count);
372+
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "using network atomics for accumulate operation with count %zu", count);
373373

374374
if (NULL == result) {
375375
to_free = result_start = result = malloc (request->len);
@@ -458,7 +458,7 @@ static inline int ompi_osc_rdma_gacc_contig (ompi_osc_rdma_sync_t *sync, const v
458458
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "network atomics not available. falling back to get-op-put implementation...");
459459
}
460460

461-
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "using get-op-put to execute accumulate with count %d", target_count);
461+
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "using get-op-put to execute accumulate with count %zu", target_count);
462462

463463
if (&ompi_mpi_op_replace.op != op || OMPI_OSC_RDMA_TYPE_GET_ACC == request->type) {
464464
ptr = malloc (len);

0 commit comments

Comments
 (0)