diff --git a/src/nica/hashmap.h b/src/nica/hashmap.h index 7530e80..b80194e 100644 --- a/src/nica/hashmap.h +++ b/src/nica/hashmap.h @@ -141,8 +141,7 @@ NcHashmap *nc_hashmap_new(nc_hash_create_func hash, nc_hash_compare_func compare * @return A newly allocated NcHashmap */ NcHashmap *nc_hashmap_new_full(nc_hash_create_func hash, nc_hash_compare_func compare, - nc_hash_free_func key_free, - nc_hash_free_func value_free); + nc_hash_free_func key_free, nc_hash_free_func value_free); /** * Store a key/value pair in the hashmap diff --git a/src/nica/inifile.h b/src/nica/inifile.h index e25fe69..fa45385 100644 --- a/src/nica/inifile.h +++ b/src/nica/inifile.h @@ -87,8 +87,7 @@ NcHashmap *nc_ini_file_parse(const char *path); * * @return 0 if the call was succesful, or a negative integer. See nc_ini_error */ -int nc_ini_file_parse_full(const char *path, NcHashmap **out_map, - int *error_line_number); +int nc_ini_file_parse_full(const char *path, NcHashmap **out_map, int *error_line_number); /** * Return a string representation for a given @NcIniError