[mpich] MPICH primary repository branch, master, updated. v3.2-328-gafe418e
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 afe418ebea58a752c1c013276dbe85221916399f (commit) from a145fd73a1bb7dd4f06c8c6b7dff5f6c3695f6f6 (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/afe418ebea58a752c1c013276dbe852219... commit afe418ebea58a752c1c013276dbe85221916399f Author: Ken Raffenetti <[email protected]> Date: Tue May 31 09:52:35 2016 -0500 test/mpi/rma: fix printf arg order in selfrma.c Reported-by: Clément Foyer <[email protected]> Signed-off-by: Halim Amer <[email protected]> diff --git a/test/mpi/rma/selfrma.c b/test/mpi/rma/selfrma.c index 701fcea..6a8b4f0 100644 --- a/test/mpi/rma/selfrma.c +++ b/test/mpi/rma/selfrma.c @@ -63,7 +63,7 @@ int main(int argc, char *argv[]) for (i = 0; i < vcount; i++) { if (winbuf[j] != sbuf[j]) { errs++; - fprintf(stderr, "VecPut: winbuf[%d] = %d, should = %d\n", winbuf[j], j, sbuf[j]); + fprintf(stderr, "VecPut: winbuf[%d] = %d, should = %d\n", j, winbuf[j], sbuf[j]); } j += 2; } @@ -77,7 +77,7 @@ int main(int argc, char *argv[]) for (i = 0; i < vcount; i++) { if (winbuf[j] != sbuf[j]) { errs++; - fprintf(stderr, "VecAcc: winbuf[%d] = %d, should = %d\n", winbuf[j], j, sbuf[j]); + fprintf(stderr, "VecAcc: winbuf[%d] = %d, should = %d\n", j, winbuf[j], sbuf[j]); } j += 2; } @@ -92,7 +92,7 @@ int main(int argc, char *argv[]) for (i = 0; i < vcount; i++) { if (winbuf[j] != sbuf[j]) { errs++; - fprintf(stderr, "VecAcc: winbuf[%d] = %d, should = %d\n", winbuf[j], j, sbuf[j]); + fprintf(stderr, "VecAcc: winbuf[%d] = %d, should = %d\n", j, winbuf[j], sbuf[j]); } j += 2; } ----------------------------------------------------------------------- Summary of changes: test/mpi/rma/selfrma.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org