aboutsummaryrefslogtreecommitdiff
path: root/libctf/ctf-link.c
diff options
context:
space:
mode:
Diffstat (limited to 'libctf/ctf-link.c')
-rw-r--r--libctf/ctf-link.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libctf/ctf-link.c b/libctf/ctf-link.c
index 9b6dd48..9cdffa9 100644
--- a/libctf/ctf-link.c
+++ b/libctf/ctf-link.c
@@ -44,10 +44,10 @@
const char *
ctf_link_input_name (ctf_dict_t *fp)
{
- if (fp->ctf_parent && fp->ctf_parent->ctf_cuname)
- return fp->ctf_parent->ctf_cuname;
- else if (fp->ctf_cuname)
- return fp->ctf_cuname;
+ if (fp->ctf_parent && fp->ctf_parent->ctf_cu_name)
+ return fp->ctf_parent->ctf_cu_name;
+ else if (fp->ctf_cu_name)
+ return fp->ctf_cu_name;
else
return "(unnamed)";
}