Skip to content

Commit b05e305

Browse files
03/36: Fix indentation
1 parent 55fa6bd commit b05e305

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
#include <goblint.h>
22
struct aws_al {
33
unsigned long current_size;
4-
};
4+
};
55

6-
struct aws_pq {
7-
int pred;
8-
struct aws_al container;
9-
};
6+
struct aws_pq {
7+
int pred;
8+
struct aws_al container;
9+
};
1010

11-
int main() {
11+
int main() {
1212
struct aws_pq queue = { 0, { 0}};
1313
struct aws_al *const list = &queue.container;
1414

1515
if (list->current_size == 0UL) {
16-
if (list->current_size == 0UL)
17-
{
16+
if (list->current_size == 0UL) {
1817
__goblint_check(1); //REACHABLE
1918
}
2019
}
21-
}
20+
}

0 commit comments

Comments
 (0)