From: Yu Watanabe Date: Wed, 7 May 2025 17:10:31 +0000 (+0900) Subject: set: rename _set_ensure_allocated() -> set_ensure_allocated() X-Git-Tag: v258-rc1~663^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54bbfa007d19e0c3fa2e27473c56bb7ae73bc6e9;p=thirdparty%2Fsystemd.git set: rename _set_ensure_allocated() -> set_ensure_allocated() Follow-ups for c09ce222b6379e8f73695e5ce53fce76a44d78c7. --- diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c index ccb62e7b2a2..db55705fdbe 100644 --- a/src/basic/hashmap.c +++ b/src/basic/hashmap.c @@ -843,7 +843,7 @@ int ordered_hashmap_ensure_allocated(OrderedHashmap **h, const struct hash_ops * return hashmap_base_ensure_allocated((HashmapBase**)h, hash_ops, HASHMAP_TYPE_ORDERED); } -int _set_ensure_allocated(Set **s, const struct hash_ops *hash_ops) { +int set_ensure_allocated(Set **s, const struct hash_ops *hash_ops) { return hashmap_base_ensure_allocated((HashmapBase**)s, hash_ops, HASHMAP_TYPE_SET); } @@ -1285,7 +1285,7 @@ int set_put(Set *s, const void *key) { int set_ensure_put(Set **s, const struct hash_ops *hash_ops, const void *key) { int r; - r = _set_ensure_allocated(s, hash_ops); + r = set_ensure_allocated(s, hash_ops); if (r < 0) return r; @@ -1883,7 +1883,7 @@ int set_put_strndup_full(Set **s, const struct hash_ops *hash_ops, const char *p assert(s); assert(p); - r = _set_ensure_allocated(s, hash_ops); + r = set_ensure_allocated(s, hash_ops); if (r < 0) return r; diff --git a/src/basic/set.h b/src/basic/set.h index 789bf9b7334..9dd7bd403db 100644 --- a/src/basic/set.h +++ b/src/basic/set.h @@ -16,8 +16,7 @@ static inline Set* set_free(Set *s) { #define set_copy(s) ((Set*) _hashmap_copy(HASHMAP_BASE(s))) -int _set_ensure_allocated(Set **s, const struct hash_ops *hash_ops); -#define set_ensure_allocated(h, ops) _set_ensure_allocated(h, ops) +int set_ensure_allocated(Set **s, const struct hash_ops *hash_ops); int set_put(Set *s, const void *key); /* no set_update */ @@ -103,7 +102,7 @@ int set_put_strndup_full(Set **s, const struct hash_ops *hash_ops, const char *p #define set_put_strndup(s, p, n) set_put_strndup_full(s, &string_hash_ops_free, p, n) #define set_put_strdup(s, p) set_put_strndup(s, p, SIZE_MAX) -int set_put_strdupv_full(Set **s, const struct hash_ops *hash_ops, char **l ); +int set_put_strdupv_full(Set **s, const struct hash_ops *hash_ops, char **l); #define set_put_strdupv(s, l) set_put_strdupv_full(s, &string_hash_ops_free, l) int set_put_strsplit(Set *s, const char *v, const char *separators, ExtractFlags flags);