aboutsummaryrefslogtreecommitdiff
path: root/libctf
diff options
context:
space:
mode:
Diffstat (limited to 'libctf')
-rw-r--r--libctf/ctf-hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/ctf-hash.c b/libctf/ctf-hash.c
index a52f96d..7f291e3 100644
--- a/libctf/ctf-hash.c
+++ b/libctf/ctf-hash.c
@@ -626,7 +626,7 @@ ctf_dynset_insert (ctf_dynset_t *hp, void *key)
struct htab *htab = (struct htab *) hp;
void **slot;
- slot = htab_find_slot (htab, key, INSERT);
+ slot = htab_find_slot (htab, key_to_internal (key), INSERT);
if (!slot)
{