X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..ca1146e64d38ec9ac89fb96d6a034a3617647529:/src/xbt/xbt_matrix.c diff --git a/src/xbt/xbt_matrix.c b/src/xbt/xbt_matrix.c index 333d5cd44a..9cb965c70d 100644 --- a/src/xbt/xbt_matrix.c +++ b/src/xbt/xbt_matrix.c @@ -185,7 +185,7 @@ xbt_matrix_t xbt_matrix_double_new_seq(int lines, int rows) /** \brief Checks whether the matrix contains the sequence of numbers */ int xbt_matrix_double_is_seq(xbt_matrix_t mat) { - int i; + unsigned int i; for (i = 0; i < mat->lines * mat->rows; i++) { double val = xbt_matrix_get_as(mat, i, 0, double);