summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2022-04-06 08:30:14 -0700
committerGitHub <noreply@github.com>2022-04-06 08:30:14 -0700
commitc6837a4aaeb4b7f6000307aacc04de99d1bae28c (patch)
tree6a1b547474f635b6dac417feea8d7ad764d961bf
parent56aab039c37b17d68003b101b9f7e41cc67745d0 (diff)
parentc3e6f020575b991ff3243c2355d8550686a2de93 (diff)
downloadacpica-c6837a4aaeb4b7f6000307aacc04de99d1bae28c.tar.gz
Merge pull request #768 from MiraySoftware/error-output
* use ACPI_ERROR() instead of fprintf() as the OS might not use or pr…
-rw-r--r--source/components/executer/exconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/executer/exconfig.c b/source/components/executer/exconfig.c
index a87316ba8..11c8ba64b 100644
--- a/source/components/executer/exconfig.c
+++ b/source/components/executer/exconfig.c
@@ -471,7 +471,7 @@ AcpiExLoadOp (
}
if (Target->Common.Type != ACPI_TYPE_INTEGER)
{
- fprintf (stderr, "Type not integer: %X\n", Target->Common.Type);
+ ACPI_ERROR ((AE_INFO, "Type not integer: %X", Target->Common.Type));
return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
}