diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2025-03-19 22:45:16 +0000 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2025-03-20 12:11:51 +0000 |
commit | aba7ef898745fd09d03ad4ebedcd11f68abc5160 (patch) | |
tree | 29ae5f8e12177d07a217e2b867e0112e4b5e477b /libctf/ctf-link.c | |
parent | a3b1d33bf67a44a9f7677ecfe8d897038c77e9a9 (diff) | |
download | binutils-aba7ef898745fd09d03ad4ebedcd11f68abc5160.zip binutils-aba7ef898745fd09d03ad4ebedcd11f68abc5160.tar.gz binutils-aba7ef898745fd09d03ad4ebedcd11f68abc5160.tar.bz2 |
libctf: lots and lots of compilation error fixes
More to come.
Diffstat (limited to 'libctf/ctf-link.c')
-rw-r--r-- | libctf/ctf-link.c | 8 |
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)"; } |