X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/354fdb4b40e5266ad8effe4af0699ea96d44c3fe..5c471ea7cf2c1ea761f5896ecf97c72e8134ee30:/src/xbt/dict.c diff --git a/src/xbt/dict.c b/src/xbt/dict.c index 602ef21b2a..7791309262 100644 --- a/src/xbt/dict.c +++ b/src/xbt/dict.c @@ -510,7 +510,7 @@ XBT_INLINE void xbt_dicti_set(xbt_dict_t dict, xbt_dictelm_t current, previous = NULL; xbt_assert(dict); - DEBUG5("ADD %ld->%ld; hash = %d, size = %d, & = %d", key, data, hash_code, + DEBUG5("ADD %zu->%zu; hash = %d, size = %d, & = %d", key, data, hash_code, dict->table_size, hash_code & dict->table_size); current = dict->table[hash_code & dict->table_size]; while (current != NULL && @@ -587,7 +587,7 @@ XBT_INLINE void xbt_dicti_remove(xbt_dict_t dict, uintptr_t key) { } if (current == NULL) - THROW1(not_found_error, 0, "key %ld not found", key); + THROW1(not_found_error, 0, "key %zu not found", key); if (previous != NULL) { previous->next = current->next;