Files
acpica/acpica-20250807-x86-fix-int64-format.patch

12 lines
551 B
Diff

--- acpica-20250807/source/components/executer/extrace.c.orig 2025-10-04 13:11:10.334036288 +0200
+++ acpica-20250807/source/components/executer/extrace.c 2025-10-04 13:11:56.048870473 +0200
@@ -301,7 +301,7 @@
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, "%llx", (unsigned long long) obj_desc->Integer.Value));
break;
case ACPI_TYPE_STRING: