git: ccb683c60335 - stable/14 - kldxref: Cast rtype to int in ef_aarch64.c in warning

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Thu, 18 Jan 2024 22:25:50 UTC
The branch stable/14 has been updated by jhb:

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

commit ccb683c60335d68c8d387bfdfdd36b83df1e815e
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-12-13 20:17:44 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2024-01-18 21:30:04 +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
    
    (cherry picked from commit 894f3f48c3ea27a6f0f54850595ff48db9ee4861)
---
 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);