X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8be7ea3f9e71cd563e91b6aba63f5c70f043fbd5..c941a6b513a71ef786c4c749f8c01f5d018d976c:/src/xbt/xbt_matrix.c diff --git a/src/xbt/xbt_matrix.c b/src/xbt/xbt_matrix.c index 574e2b9df9..9cb965c70d 100644 --- a/src/xbt/xbt_matrix.c +++ b/src/xbt/xbt_matrix.c @@ -1,6 +1,6 @@ /* xbt_matrix_t management functions */ -/* Copyright (c) 2006-2012. The SimGrid Team. +/* Copyright (c) 2006-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -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);