git: 95c8b4d74bce - main - acpica: Fix build of acpidb(8) on i386
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 26 Aug 2025 19:06:16 UTC
The branch main has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=95c8b4d74bced30f26d19f1d6fcd6310fe99486f
commit 95c8b4d74bced30f26d19f1d6fcd6310fe99486f
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2025-08-26 19:06:09 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2025-08-26 19:06:09 +0000
acpica: Fix build of acpidb(8) on i386
Fixes: b5daf675efc7 ("acpica: Merge ACPICA 20250807")
---
sys/contrib/dev/acpica/components/executer/extrace.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/contrib/dev/acpica/components/executer/extrace.c b/sys/contrib/dev/acpica/components/executer/extrace.c
index d54d4908ca65..b48a5fcb289b 100644
--- a/sys/contrib/dev/acpica/components/executer/extrace.c
+++ b/sys/contrib/dev/acpica/components/executer/extrace.c
@@ -301,7 +301,7 @@ AcpiExTraceArgs(ACPI_OPERAND_OBJECT **Params, UINT32 Count)
switch (obj_desc->Common.Type)
{
case ACPI_TYPE_INTEGER:
- ACPI_DEBUG_PRINT_RAW((ACPI_DB_TRACE_POINT, "%lx", obj_desc->Integer.Value));
+ ACPI_DEBUG_PRINT_RAW((ACPI_DB_TRACE_POINT, "%jx", (uintmax_t)obj_desc->Integer.Value));
break;
case ACPI_TYPE_STRING: