From a96a9ca9535e0a59bd4367dd84040aa0a9ac6f48 Mon Sep 17 00:00:00 2001 From: Nick Alcock Date: Tue, 2 Apr 2024 16:09:11 +0100 Subject: libctf: fix a debugging typo libctf/ * ctf-lookup.c (ctf_symidx_sort): Fix a debugging typo. --- libctf/ctf-lookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libctf') 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; } -- cgit v1.1