[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-20-g2bd0630

Service Account noreply at mpich.org
Thu Dec 10 10:04:32 CST 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  2bd0630d5d7f5a6837e1b6ee64d6254070c85e53 (commit)
      from  da5a5bba60896c202e8a0ae2e331738654ae2c42 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/2bd0630d5d7f5a6837e1b6ee64d6254070c85e53

commit 2bd0630d5d7f5a6837e1b6ee64d6254070c85e53
Author: Rob Latham <robl at mcs.anl.gov>
Date:   Wed Dec 9 17:01:26 2015 -0600

    when promoting type, also promote format string
    
    a fixup to commit 40123bec2c27 : when I promoted incount, also needed to
    promote MPL_printf string to match.
    
    fixes CID 120440
    
    No Reviewer

diff --git a/src/mpid/common/sched/mpid_sched.c b/src/mpid/common/sched/mpid_sched.c
index e669b22..dc96a4d 100644
--- a/src/mpid/common/sched/mpid_sched.c
+++ b/src/mpid/common/sched/mpid_sched.c
@@ -734,8 +734,10 @@ int MPID_Sched_copy(const void *inbuf,  MPI_Aint incount,  MPI_Datatype intype,
         MPID_Datatype_get_size_macro(intype, intype_size);
         MPID_Datatype_get_size_macro(outtype, outtype_size);
         if (incount * intype_size > outcount * outtype_size) {
-            MPL_error_printf("truncation: intype=%#x, intype_size=%lld, incount=%d, outtype=%#x, outtype_size=%lld outcount=%d\n",
-                              intype, (long long)intype_size, incount, outtype, (long long)outtype_size, outcount);
+            MPL_error_printf("truncation: intype=%#x, intype_size=%lld, incount=%lld, outtype=%#x, outtype_size=%lld outcount=%d\n",
+                              intype, (long long)intype_size,
+			      (long long)incount, outtype,
+			      (long long)outtype_size, outcount);
         }
     }
 #endif

-----------------------------------------------------------------------

Summary of changes:
 src/mpid/common/sched/mpid_sched.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list