X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/de2f1c1df519abbc80c22d626d806ab7a47bf0a8..73d53de1c9a9a2b536522d0d2e04031276941caf:/src/xbt/dict_cursor.c diff --git a/src/xbt/dict_cursor.c b/src/xbt/dict_cursor.c index 62306966a9..2840c7accb 100644 --- a/src/xbt/dict_cursor.c +++ b/src/xbt/dict_cursor.c @@ -226,7 +226,7 @@ gras_dict_cursor_get_or_free(gras_dict_cursor_t **cursor, gras_dynar_get((*cursor)->keys, (*cursor)->pos, key ); gras_dynar_get((*cursor)->key_lens, (*cursor)->pos_len, &key_len); - errcode = gras_dictelm_retrieve_ext((*cursor)->head, *key, key_len, data); + errcode = gras_dictelm_get_ext((*cursor)->head, *key, key_len, data); if (errcode == mismatch_error) { gras_dict_cursor_free(*cursor); *cursor=NULL; @@ -278,7 +278,7 @@ gras_dict_cursor_get_data(gras_dict_cursor_t *p_cursor, gras_dynar_get(p_cursor->keys, p_cursor->pos-1, &key ); gras_dynar_get(p_cursor->key_lens, p_cursor->pos_len-1, &key_len); - TRY(gras_dictelm_retrieve_ext(p_cursor->head, key, key_len, data)); + TRY(gras_dictelm_get_ext(p_cursor->head, key, key_len, data)); return errcode; }