[17/22] libctf: fix a debugging typo

Message ID 20240417202018.34966-18-nick.alcock@oracle.com
State New
Headers
Series more modifiable CTF dicts (and a few bugfixes) |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_binutils_build--master-arm success Testing passed
linaro-tcwg-bot/tcwg_binutils_build--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_binutils_check--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_binutils_check--master-arm success Testing passed

Commit Message

Nick Alcock April 17, 2024, 8:20 p.m. UTC
  libctf/

	* ctf-lookup.c (ctf_symidx_sort): Fix a debugging typo.
---
 libctf/ctf-lookup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/libctf/ctf-lookup.c b/libctf/ctf-lookup.c
index f37dd7e45ce..1b1ebedc4b7 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;
     }