diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-23 16:03:40 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-23 16:03:40 +0200 |
commit | 88c7815d5fa18f51ed4ac318155822b8a688fdf5 (patch) | |
tree | c7f36d3b44fdb1ecc13dcbd8400c1c46ee029ac8 /src/libmdsserver/hash-table.h | |
parent | add value remapping to hash table unmarshaling (diff) | |
download | mds-88c7815d5fa18f51ed4ac318155822b8a688fdf5.tar.gz mds-88c7815d5fa18f51ed4ac318155822b8a688fdf5.tar.bz2 mds-88c7815d5fa18f51ed4ac318155822b8a688fdf5.tar.xz |
m fixes + store client information in a hash table and in a linked list
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/libmdsserver/hash-table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmdsserver/hash-table.h b/src/libmdsserver/hash-table.h index 2525da0..cf0af02 100644 --- a/src/libmdsserver/hash-table.h +++ b/src/libmdsserver/hash-table.h @@ -165,7 +165,7 @@ int hash_table_create_fine_tuned(hash_table_t* restrict this, size_t initial_cap * @return :int Non-zero on error, `errno` will have been set accordingly */ #define hash_table_create_tuned(this, initial_capacity) \ - hash_table_create_fine_tuned(this, initial_capacity, 0.75) + hash_table_create_fine_tuned(this, initial_capacity, 0.75f) /** * Create a hash table |