libctf: Use ctf_type_t instead of struct ctf_type

For consistency with other CTF toolchain code.  No functional change
intended.

Fixes:	105fd928b0 ("libctf: Improve check for duplicate SOU definitions in ctf_add_type()")
MFC after:	1 week
This commit is contained in:
Mark Johnston 2022-02-09 09:38:03 -05:00
parent c00d345665
commit 2e4311906d

View File

@ -1233,7 +1233,7 @@ static long
soucmp(ctf_file_t *src_fp, ctf_id_t src_type, ctf_file_t *dst_fp,
ctf_id_t dst_type)
{
const struct ctf_type *src_tp, *dst_tp;
const ctf_type_t *src_tp, *dst_tp;
const char *src_name, *dst_name;
ssize_t src_sz, dst_sz, src_inc, dst_inc;
uint_t kind, n;