aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmdsserver/hash-table.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-09-13 09:57:14 +0200
committerMattias Andrée <maandree@operamail.com>2014-09-13 09:57:14 +0200
commit02b926daece5059798013fbe7a24dd9aeb06d810 (patch)
treeef3ae05310508a381b2c09d30d43c9afe633915a /src/libmdsserver/hash-table.c
parentupdate todo (diff)
downloadmds-02b926daece5059798013fbe7a24dd9aeb06d810.tar.gz
mds-02b926daece5059798013fbe7a24dd9aeb06d810.tar.bz2
mds-02b926daece5059798013fbe7a24dd9aeb06d810.tar.xz
doc style fix
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/libmdsserver/hash-table.c')
-rw-r--r--src/libmdsserver/hash-table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmdsserver/hash-table.c b/src/libmdsserver/hash-table.c
index dac9303..c0de355 100644
--- a/src/libmdsserver/hash-table.c
+++ b/src/libmdsserver/hash-table.c
@@ -65,7 +65,7 @@ static inline size_t __attribute__((pure)) truncate_hash(const hash_table_t* res
* Grow the table
*
* @param this The hash table
- * @return Non zero on error, errno will be set accordingly
+ * @return Non zero on error, `errno` will be set accordingly
*/
static int rehash(hash_table_t* restrict this)
{
@@ -453,7 +453,7 @@ void hash_table_marshal(const hash_table_t* restrict this, char* restrict data)
* @param this Memory slot in which to store the new hash table
* @param data In buffer with the marshalled data
* @param remapper Function that translates values, `NULL` if not translation takes place
- * @return Non-zero on error, errno will be set accordingly.
+ * @return Non-zero on error, `errno` will be set accordingly.
* Destroy the table on error.
*/
int hash_table_unmarshal(hash_table_t* restrict this, char* restrict data, remap_func* remapper)