The branch main has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=894f3f48c3ea27a6f0f54850595ff48db9ee4861

commit 894f3f48c3ea27a6f0f54850595ff48db9ee4861
Author:     John Baldwin <[email protected]>
AuthorDate: 2023-12-13 20:17:44 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2023-12-13 20:17:44 +0000

    kldxref: Cast rtype to int in ef_aarch64.c in warning
    
    This is consistent with the other architecture-specific relocation
    handlers.
    
    Reported by:    mjg
    Sponsored by:   DARPA
---
 usr.sbin/kldxref/ef_aarch64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/kldxref/ef_aarch64.c b/usr.sbin/kldxref/ef_aarch64.c
index 5bd521b28e38..f1e499e76ef1 100644
--- a/usr.sbin/kldxref/ef_aarch64.c
+++ b/usr.sbin/kldxref/ef_aarch64.c
@@ -65,7 +65,7 @@ ef_aarch64_reloc(struct elf_file *ef, const void *reldata, 
Elf_Type reltype,
        case R_AARCH64_ABS64:
                break;
        default:
-               warnx("unhandled relocation type %lu", rtype);
+               warnx("unhandled relocation type %d", (int)rtype);
                break;
        }
        return (0);

Reply via email to