X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7279a2ea28348341347a9a4dc99d54355726290c..caf6aba21918125649ff5a84fafb22e225b2d580:/src/xbt/xbt_str.c diff --git a/src/xbt/xbt_str.c b/src/xbt/xbt_str.c index d1f1cd91ea..c2384f199f 100644 --- a/src/xbt/xbt_str.c +++ b/src/xbt/xbt_str.c @@ -6,7 +6,7 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "portable.h" +#include "src/portable.h" #include "xbt/misc.h" #include "xbt/sysdep.h" #include "xbt/str.h" /* headers of these functions */ @@ -861,7 +861,7 @@ char *xbt_str_from_file(FILE * file) */ int xbt_str_start_with(const char* str, const char* start) { - int i; + unsigned int i; size_t l_str = strlen(str); size_t l_start = strlen(start);