diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2024-04-02 16:09:11 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2024-04-19 16:14:47 +0100 |
commit | a96a9ca9535e0a59bd4367dd84040aa0a9ac6f48 (patch) | |
tree | ebedfc7007186a3b1623f11e461146cacf9dc284 /libctf/ctf-lookup.c | |
parent | 9049b960f2bc7f0cb9db80d255e9fbec9f476f0f (diff) | |
download | binutils-a96a9ca9535e0a59bd4367dd84040aa0a9ac6f48.zip binutils-a96a9ca9535e0a59bd4367dd84040aa0a9ac6f48.tar.gz binutils-a96a9ca9535e0a59bd4367dd84040aa0a9ac6f48.tar.bz2 |
libctf: fix a debugging typo
libctf/
* ctf-lookup.c (ctf_symidx_sort): Fix a debugging typo.
Diffstat (limited to 'libctf/ctf-lookup.c')
-rw-r--r-- | libctf/ctf-lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/ctf-lookup.c b/libctf/ctf-lookup.c index f37dd7e..1b1ebed 100644 --- a/libctf/ctf-lookup.c +++ b/libctf/ctf-lookup.c @@ -455,7 +455,7 @@ ctf_symidx_sort (ctf_dict_t *fp, uint32_t *idx, size_t *nidx, if (!(fp->ctf_header->cth_flags & CTF_F_IDXSORTED)) { ctf_symidx_sort_arg_cb_t arg = { fp, idx }; - ctf_dprintf ("Index section unsorted: sorting."); + ctf_dprintf ("Index section unsorted: sorting.\n"); ctf_qsort_r (sorted, *nidx, sizeof (uint32_t), sort_symidx_by_name, &arg); fp->ctf_header->cth_flags |= CTF_F_IDXSORTED; } |