From: suter Date: Fri, 30 Nov 2012 09:15:36 +0000 (+0100) Subject: typos X-Git-Tag: v3_9_rc1~86^2~228 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7a9dae46b82d9bb370ceea26566e130fce38c282 typos --- diff --git a/src/smpi/smpi_base.c b/src/smpi/smpi_base.c index 5192ca3be9..18914fa128 100644 --- a/src/smpi/smpi_base.c +++ b/src/smpi/smpi_base.c @@ -50,7 +50,7 @@ static MPI_Request build_request(void *buf, int count, s_smpi_subtype_t *subtype = datatype->substruct; if(datatype->has_subtype == 1){ - // This part handles the problem of non-contignous memory + // This part handles the problem of non-contiguous memory old_buf = buf; buf = malloc(count*smpi_datatype_size(datatype)); if (flags & SEND) { @@ -59,7 +59,7 @@ static MPI_Request build_request(void *buf, int count, } request->buf = buf; - // This part handles the problem of non-contignous memory (for the + // This part handles the problem of non-contiguous memory (for the // unserialisation at the reception) request->old_buf = old_buf; request->old_type = datatype;