[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2a2-1-g1beada6
Service Account
noreply at mpich.org
Mon Nov 17 22:09:41 CST 2014
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 1beada6b2ef4f6b1db7bdd380d57e471fd4d03e4 (commit)
from e9a2470032936b4c083506ae5d25f798a8cd56db (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/1beada6b2ef4f6b1db7bdd380d57e471fd4d03e4
commit 1beada6b2ef4f6b1db7bdd380d57e471fd4d03e4
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date: Mon Nov 17 22:06:21 2014 -0600
use 0 to indicate false in while expression
diff --git a/src/mpid/ch3/src/ch3u_recvq.c b/src/mpid/ch3/src/ch3u_recvq.c
index 48ba649..ff769f7 100644
--- a/src/mpid/ch3/src/ch3u_recvq.c
+++ b/src/mpid/ch3/src/ch3u_recvq.c
@@ -595,7 +595,7 @@ MPID_Request * MPIDI_CH3U_Recvq_FDU_or_AEP(int source, int tag,
prev_rreq = rreq;
rreq = rreq->dev.next;
} while (rreq);
- } while (false);
+ } while (0);
}
}
MPIR_T_PVAR_TIMER_END(RECVQ, time_matching_unexpectedq);
-----------------------------------------------------------------------
Summary of changes:
src/mpid/ch3/src/ch3u_recvq.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list