mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
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()") (cherry picked from commit2e4311906d)
This commit is contained in:
parent
1dd57c72a4
commit
8687a5f369
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue