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 886c205c0cfacbcc6767edcf2f5f845d6bd64684 (commit) via 4a2e75f4508926bce2e4df64fdc2580c45188c61 (commit) from 274500c780126b3095f7423425f8a4f9ed20e09e (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/886c205c0cfacbcc6767edcf2f5f845d6b... commit 886c205c0cfacbcc6767edcf2f5f845d6bd64684 Author: Ken Raffenetti <[email protected]> Date: Fri Jun 17 15:01:37 2016 -0500 mpi/debugger/dbgstub.c: warning squash Signed-off-by: Yanfei Guo <[email protected]> diff --git a/src/mpi/debugger/dbgstub.c b/src/mpi/debugger/dbgstub.c index 4de357d..ea93ecd 100644 --- a/src/mpi/debugger/dbgstub.c +++ b/src/mpi/debugger/dbgstub.c @@ -253,7 +253,7 @@ int dbgrI_find_symbol( mqs_image *image, char *name, mqs_taddr_t * loc ) /* The following printfs can help is diagnosing problems when the extern variable MPIR_All_communicators appears not to be correctly resolved. */ - printf( "all communicators head at %p\n", *loc ); + printf( "all communicators head at %p\n", (void *)*loc ); printf( "all communicators head as pointer %p\n", &MPIR_All_communicators ); printf( "head is %p\n", MPIR_All_communicators.head ); return mqs_ok; http://git.mpich.org/mpich.git/commitdiff/4a2e75f4508926bce2e4df64fdc2580c45... commit 4a2e75f4508926bce2e4df64fdc2580c45188c61 Author: Ken Raffenetti <[email protected]> Date: Fri Jun 17 15:00:44 2016 -0500 mpi/debugger/dbgstub.c: fix incorrect enum value Signed-off-by: Yanfei Guo <[email protected]> diff --git a/src/mpi/debugger/dbgstub.c b/src/mpi/debugger/dbgstub.c index de4d801..4de357d 100644 --- a/src/mpi/debugger/dbgstub.c +++ b/src/mpi/debugger/dbgstub.c @@ -102,7 +102,7 @@ int dbgrI_field_offset(mqs_type *type, char *name) /* printf ( "curtype is %d\n", curType ); */ switch (curType) { - case TYPE_MPID_COMM: + case TYPE_MPIR_COMM: { MPIR_Comm c; if (strcmp( name, "name" ) == 0) { ----------------------------------------------------------------------- Summary of changes: src/mpi/debugger/dbgstub.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- MPICH primary repository