aboutsummaryrefslogtreecommitdiff
path: root/libctf/ctf-open.c
diff options
context:
space:
mode:
Diffstat (limited to 'libctf/ctf-open.c')
-rw-r--r--libctf/ctf-open.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/libctf/ctf-open.c b/libctf/ctf-open.c
index 219831b..4cf18f0 100644
--- a/libctf/ctf-open.c
+++ b/libctf/ctf-open.c
@@ -791,17 +791,20 @@ init_static_types (ctf_dict_t *fp, ctf_header_t *cth)
if ((fp->ctf_structs
= ctf_dynhash_create_sized (pop[CTF_K_STRUCT], ctf_hash_string,
- ctf_hash_eq_string, NULL, NULL)) == NULL)
+ ctf_hash_eq_string,
+ NULL, NULL, NULL)) == NULL)
return ENOMEM;
if ((fp->ctf_unions
= ctf_dynhash_create_sized (pop[CTF_K_UNION], ctf_hash_string,
- ctf_hash_eq_string, NULL, NULL)) == NULL)
+ ctf_hash_eq_string,
+ NULL, NULL, NULL)) == NULL)
return ENOMEM;
if ((fp->ctf_enums
= ctf_dynhash_create_sized (pop[CTF_K_ENUM], ctf_hash_string,
- ctf_hash_eq_string, NULL, NULL)) == NULL)
+ ctf_hash_eq_string,
+ NULL, NULL, NULL)) == NULL)
return ENOMEM;
if ((fp->ctf_names
@@ -816,7 +819,8 @@ init_static_types (ctf_dict_t *fp, ctf_header_t *cth)
pop[CTF_K_RESTRICT] +
pop_enumerators,
ctf_hash_string,
- ctf_hash_eq_string, NULL, NULL)) == NULL)
+ ctf_hash_eq_string,
+ NULL, NULL, NULL)) == NULL)
return ENOMEM;
if ((fp->ctf_conflicting_enums