[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1rc2-54-gc589046

mysql vizuser noreply at mpich.org
Fri Dec 13 13:29:41 CST 2013


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  c5890463725b658ebe88da4aa8abe0d0ea794ff4 (commit)
      from  b250d338e66667a8a1071a5f73a4151fd59f83b2 (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/c5890463725b658ebe88da4aa8abe0d0ea794ff4

commit c5890463725b658ebe88da4aa8abe0d0ea794ff4
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date:   Fri Dec 13 13:05:49 2013 -0600

    format warning squash
    
    Use the string format macro for MPI_Aint
    
    Signed-off-by: Rob Latham <robl at mcs.anl.gov>

diff --git a/src/mpi/pt2pt/bsendutil.c b/src/mpi/pt2pt/bsendutil.c
index 5309e9f..1b925a3 100644
--- a/src/mpi/pt2pt/bsendutil.c
+++ b/src/mpi/pt2pt/bsendutil.c
@@ -235,7 +235,7 @@ int MPIR_Bsend_isend(const void *buf, int count, MPI_Datatype dtype,
     else
         packsize = count;
 
-    MPIU_DBG_MSG_D(BSEND,TYPICAL,"looking for buffer of size %ld", packsize);
+    MPIU_DBG_MSG_D(BSEND,TYPICAL,"looking for buffer of size " MPI_AINT_FMT_DEC_SPEC, packsize);
     /*
      * Use two passes.  Each pass is the same; between the two passes,
      * attempt to complete any active requests, and start any pending
@@ -247,7 +247,7 @@ int MPIR_Bsend_isend(const void *buf, int count, MPI_Datatype dtype,
 	p = MPIR_Bsend_find_buffer( packsize );
 	if (p) {
 	    MPIU_DBG_MSG_FMT(BSEND,TYPICAL,(MPIU_DBG_FDEST,
-                     "found buffer of size %ld with address %p",packsize,p));
+                     "found buffer of size " MPI_AINT_FMT_DEC_SPEC " with address %p",packsize,p));
 	    /* Found a segment */
 
 	    msg = &p->msg;

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

Summary of changes:
 src/mpi/pt2pt/bsendutil.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list