X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ca82f90e6d610b6bb3b038cd9ee48d378cc8a909..3f4f5e63dadc0023c0a02a08af8e9e9801b38e8e:/src/xbt/dict_elm.c diff --git a/src/xbt/dict_elm.c b/src/xbt/dict_elm.c index 9c5bc3b6e6..822816647c 100644 --- a/src/xbt/dict_elm.c +++ b/src/xbt/dict_elm.c @@ -1,6 +1,6 @@ /* dict - a generic dictionary, variation over hash table */ -/* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2023. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -25,7 +25,7 @@ xbt_dictelm_t xbt_dictelm_new(const char* key, int key_len, unsigned int hash_co return element; } -void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element) +void xbt_dictelm_free(const_xbt_dict_t dict, xbt_dictelm_t element) { if (element) { char *key = element->key; @@ -40,7 +40,7 @@ void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element) } } -void xbt_dictelm_set_data(xbt_dict_t dict, xbt_dictelm_t element, void* data) +void xbt_dictelm_set_data(const_xbt_dict_t dict, xbt_dictelm_t element, void* data) { void_f_pvoid_t free_f = dict->free_f; if (free_f && element->content)