X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0b0323ac58fd4268dea78f921b88213fdb80e54e..ca1146e64d38ec9ac89fb96d6a034a3617647529:/src/xbt/xbt_sha.c diff --git a/src/xbt/xbt_sha.c b/src/xbt/xbt_sha.c index e2973ca8c8..aa3dd12b64 100644 --- a/src/xbt/xbt_sha.c +++ b/src/xbt/xbt_sha.c @@ -15,6 +15,7 @@ #include "xbt/sysdep.h" #include "xbt/hash.h" +#include /* sprintf */ struct s_xbt_sha_ { unsigned int hash[5]; @@ -31,11 +32,8 @@ static void sha_calculate(xbt_sha_t sha); /** @brief constructor */ xbt_sha_t xbt_sha_new(void) { - xbt_sha_t sha; - - sha = xbt_new(s_xbt_sha_t, 1); + xbt_sha_t sha = xbt_new(s_xbt_sha_t, 1); xbt_sha_reset(sha); - return sha; } @@ -177,7 +175,7 @@ static void sha_calculate(xbt_sha_t sha) /* ************* */ #ifdef SIMGRID_TEST #include "xbt/hash.h" -#include "portable.h" /* hexa_str */ +#include "src/portable.h" /* hexa_str */ static char *mycmp(const char *p1, const char *p2, size_t n) {