summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2021-07-09 07:37:22 -0700
committerRobert Moore <Robert.Moore@intel.com>2021-07-09 07:37:22 -0700
commit4dbe4b9a0c203b04918705f022e0db997aa55696 (patch)
tree3c02e6c0c65203eb24cea3852b44aa40e99b93d8
parent9e9b5ad4b2bdd74680b42fb78929cb574fdb5ae3 (diff)
downloadacpica-4dbe4b9a0c203b04918705f022e0db997aa55696.tar.gz
Fix an if statement
(add parens).
-rw-r--r--source/components/dispatcher/dswexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/dispatcher/dswexec.c b/source/components/dispatcher/dswexec.c
index addc06e13..636067bfe 100644
--- a/source/components/dispatcher/dswexec.c
+++ b/source/components/dispatcher/dswexec.c
@@ -737,7 +737,7 @@ AcpiDsExecEndOp (
if (ACPI_SUCCESS (Status))
{
Status = AcpiExWriteDataToField (ObjDesc, Op->Common.Node->Object, NULL);
- if ACPI_FAILURE (Status)
+ if (ACPI_FAILURE (Status))
{
ACPI_EXCEPTION ((AE_INFO, Status, "While writing to buffer field"));
}