diff options
Diffstat (limited to 'src/shared/set.h')
-rw-r--r-- | src/shared/set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/set.h b/src/shared/set.h index 39a5a495f5..b2f473428e 100644 --- a/src/shared/set.h +++ b/src/shared/set.h @@ -30,7 +30,7 @@ typedef struct Set Set; -Set *set_new(hash_func_t hash_func, compare_func_t compare_func); +Set *set_new(const struct hash_ops *hash_ops); void set_free(Set* s); int set_put(Set *s, void *value); |