From 3b4bc9a83808ec4eae0f4ff70a48ddb1995bde65 Mon Sep 17 00:00:00 2001 From: Nick Alcock Date: Wed, 19 Mar 2025 11:16:07 +0000 Subject: libctf: compilation error fixes --- libctf/ctf-open.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libctf/ctf-open.c') diff --git a/libctf/ctf-open.c b/libctf/ctf-open.c index 118a33f..50f1603 100644 --- a/libctf/ctf-open.c +++ b/libctf/ctf-open.c @@ -340,6 +340,7 @@ get_vbytes_v4 (ctf_dict_t *fp, const ctf_type_t *tp, return (sizeof (ctf_member_t) * vlen); case CTF_K_FUNCTION: return (sizeof (ctf_param_t) * vlen); + case CTF_K_FUNC_LINKAGE: case CTF_K_VAR: return (sizeof (ctf_linkage_t)); case CTF_K_DATASEC: @@ -354,7 +355,6 @@ get_vbytes_v4 (ctf_dict_t *fp, const ctf_type_t *tp, case CTF_K_VOLATILE: case CTF_K_CONST: case CTF_K_RESTRICT: - case CTF_K_FUNC: case CTF_K_BTF_FLOAT: return 0; /* These should have been resolved away by LCTF_KIND. @@ -1659,9 +1659,9 @@ ctf_bufopen (const ctf_sect_t *ctfsect, const ctf_sect_t *symsect, bp = (const ctf_preamble_t *) ctfsect->cts_data; pp = (const ctf_preamble_t *) ctfsect->cts_data; /* CTFv3 or below. */ - if (_libctf_unlikely_ (bp->btf_magic != BTF_MAGIC)) + if (_libctf_unlikely_ (bp->btf_magic != CTF_BTF_MAGIC)) { - if (bp->btf_magic == bswap_16 (BTF_MAGIC)) + if (bp->btf_magic == bswap_16 (CTF_BTF_MAGIC)) { format = IS_BTF; foreign_endian = 1; -- cgit v1.1