[PATCH] acpi: method: remove redundant continue statement
Colin King
colin.king at canonical.com
Tue Mar 30 10:54:31 UTC 2021
From: Colin Ian King <colin.king at canonical.com>
The continue statement at the end of a for-loop is redundant. Remove
it to silence pedantic static analysis warnings.
Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
src/acpi/method/method.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c
index f5253de9..0cbb3982 100644
--- a/src/acpi/method/method.c
+++ b/src/acpi/method/method.c
@@ -3884,10 +3884,8 @@ static void method_test_TRT_return(
elements_ok = false;
}
- if (!elements_ok) {
+ if (!elements_ok)
failed = true;
- continue;
- }
}
if (!failed)
--
2.30.2
More information about the fwts-devel
mailing list