diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-08-05 17:03:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-05 17:03:09 +0200 |
commit | ceab9e2deee29dfda213a30c533c7dcd59c6bcad (patch) | |
tree | 0b46b9a8c0f69456c39c1246afe11b1d9d33dee0 /src/basic | |
parent | 96533edceb5bb626a674acda2843de72838811cf (diff) | |
parent | 80a58668d989c2316bcf1079b3e98ae526e633fa (diff) |
Merge pull request #3900 from keszybz/fix-3607
Fix 3607
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/set.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/basic/set.h b/src/basic/set.h index 12f64a8c57..a5f8beb0c4 100644 --- a/src/basic/set.h +++ b/src/basic/set.h @@ -23,8 +23,8 @@ #include "hashmap.h" #include "macro.h" -Set *internal_set_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS); -#define set_new(ops) internal_set_new(ops HASHMAP_DEBUG_SRC_ARGS) +Set *internal_set_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS); +#define set_new(ops) internal_set_new(ops HASHMAP_DEBUG_SRC_ARGS) static inline Set *set_free(Set *s) { internal_hashmap_free(HASHMAP_BASE(s)); @@ -42,8 +42,8 @@ static inline Set *set_copy(Set *s) { return (Set*) internal_hashmap_copy(HASHMAP_BASE(s)); } -int internal_set_ensure_allocated(Set **s, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS); -#define set_ensure_allocated(h, ops) internal_set_ensure_allocated(h, ops HASHMAP_DEBUG_SRC_ARGS) +int internal_set_ensure_allocated(Set **s, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS); +#define set_ensure_allocated(h, ops) internal_set_ensure_allocated(h, ops HASHMAP_DEBUG_SRC_ARGS) int set_put(Set *s, const void *key); /* no set_update */ |