diff options
| author | Phan Trinh Ha <[email protected]> | 2022-03-18 14:00:47 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-03-18 14:00:47 -0700 |
| commit | 9bb77ebe0a5be25d21fff67200e75427e33a3d12 (patch) | |
| tree | 682abe6c9429722631b887d3c4e2e7e74aef79b5 | |
| parent | 983fd454fa1ca4ca063595a5260ca3078ec29f23 (diff) | |
Fix Acpi.cpp error msg string (#703)
| -rw-r--r-- | usb/UcmCxUcsi/Acpi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usb/UcmCxUcsi/Acpi.cpp b/usb/UcmCxUcsi/Acpi.cpp index 33dec487..0261d6e8 100644 --- a/usb/UcmCxUcsi/Acpi.cpp +++ b/usb/UcmCxUcsi/Acpi.cpp @@ -561,7 +561,7 @@ Acpi_EvaluateUcsiDsm ( if (outputBuffer == nullptr) { status = STATUS_INSUFFICIENT_RESOURCES; - TRACE_ERROR(TRACE_FLAG_ACPI, "[Device: 0x%p] ExAllocatePoolWithTag failed for %Iu bytes", device, outputBufferSize); + TRACE_ERROR(TRACE_FLAG_ACPI, "[Device: 0x%p] ExAllocatePool2 failed for %Iu bytes", device, outputBufferSize); goto Exit; } |
