Skip to content

Commit 7a4ca0b

Browse files
committed
formatting
1 parent eb776a7 commit 7a4ca0b

File tree

1 file changed

+3
-3
lines changed
  • c/common/test/rules/wrapspuriousfunctioninloop

1 file changed

+3
-3
lines changed

c/common/test/rules/wrapspuriousfunctioninloop/test.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ void f3() {
3232

3333
void f4() {
3434
mtx_lock(&lk);
35-
35+
3636
for (;;) {
3737
cnd_wait(&cnd, &lk); // COMPLIANT
3838
}
3939
}
4040

4141
void f5() {
4242
mtx_lock(&lk);
43-
43+
4444
int i = 2;
4545
while (i > 0) {
4646
i--;
@@ -51,7 +51,7 @@ void f5() {
5151

5252
void f6() {
5353
mtx_lock(&lk);
54-
54+
5555
for (int i = 0; i < 10; i++) {
5656
}
5757
int i = 0;

0 commit comments

Comments
 (0)