We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f375299 commit f64f37bCopy full SHA for f64f37b
ompi/mca/vprotocol/pessimist/vprotocol_pessimist_wait.c
@@ -20,7 +20,7 @@ static int vprotocol_pessimist_request_no_free(ompi_request_t **req) {
20
}
21
22
#define PREPARE_REQUESTS_WITH_NO_FREE(count, requests) do { \
23
- for (typeof(count) i = 0; i < count; i++) \
+ for (size_t i = 0; i < count; i++) \
24
{ \
25
if(requests[i] == MPI_REQUEST_NULL) continue; \
26
requests[i]->req_free = vprotocol_pessimist_request_no_free; \
0 commit comments