From 0594dadeb87a51297bccfa7e67ab6e08c5ac7b61 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Wed, 22 Jul 2015 16:26:17 +0000 Subject: [PATCH] Catch up with ACPICA 20150717. --- sys/dev/acpica/acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index d5d15daa66f..92f1292f025 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -3664,7 +3664,7 @@ acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify) handle_buf.Pointer = NULL; handle_buf.Length = ACPI_ALLOCATE_BUFFER; - status = AcpiNsHandleToPathname(h, &handle_buf); + status = AcpiNsHandleToPathname(h, &handle_buf, FALSE); if (ACPI_FAILURE(status)) return; snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x", notify);