Skip to content

Commit 23b36b4

Browse files
committed
FLP30-C: Fix NON_COMPLIANT tag
Loop starts on Line 9.
1 parent 71eb244 commit 23b36b4

File tree

1 file changed

+2
-2
lines changed
  • c/cert/test/rules/FLP30-C

1 file changed

+2
-2
lines changed

c/cert/test/rules/FLP30-C/test.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ void f1() {
66
f = f * 2.0F;
77
}
88

9-
do {
9+
do { // NON_COMPLIANT
1010
f *= 2.0F;
11-
} while (f < 10.0F); // NON_COMPLIANT
11+
} while (f < 10.0F);
1212
}
1313

1414
void f2() {

0 commit comments

Comments
 (0)