From 69642a9cd466dd9e5cb33585f10bc2bca7d9213c Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Tue, 1 May 2007 19:47:33 +0000 Subject: [PATCH] Remove 2 warnings about ptrdiff_t to unsigned long implicit conversion. This commit was SVN r14565. --- ompi/mca/coll/tuned/coll_tuned_reduce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/coll/tuned/coll_tuned_reduce.c b/ompi/mca/coll/tuned/coll_tuned_reduce.c index a67410add7..7243a62aeb 100644 --- a/ompi/mca/coll/tuned/coll_tuned_reduce.c +++ b/ompi/mca/coll/tuned/coll_tuned_reduce.c @@ -69,7 +69,7 @@ int ompi_coll_tuned_reduce_generic( void* sendbuf, void* recvbuf, int original_c sendtmpbuf = (char *)recvbuf; } - OPAL_OUTPUT((ompi_coll_tuned_stream, "coll:tuned:reduce_generic count %d, msg size %ld, segsize %ld, max_requests %d", original_count, num_segments * segment_increment, segment_increment, max_outstanding_reqs)); + OPAL_OUTPUT((ompi_coll_tuned_stream, "coll:tuned:reduce_generic count %d, msg size %ld, segsize %ld, max_requests %d", original_count, (unsigned long)(num_segments * segment_increment), (unsigned long)segment_increment, max_outstanding_reqs)); rank = ompi_comm_rank(comm);