Skip to content

Commit 27a61fc

Browse files
committed
format test case 86 06
1 parent 5fe82ce commit 27a61fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/regression/86-relational-array-oob/06-multi-dimensional-global2.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ int len2;
99
int len3;
1010
int len4;
1111

12-
int f(long *** arr[])
12+
int f(long ***arr[])
1313
{
1414
long ***t;
1515
for (int i = 0; i < len1; i++)
16-
t = arr[i]; // TODO NOWARN for some reason eval_offset doesn't know the index epxression here
16+
t = arr[i]; // TODO NOWARN for some reason eval_offset doesn't know the index epxression here
1717
}
1818

1919
int main()
@@ -36,7 +36,7 @@ int main()
3636
arr[i][j][k][l] = 3; // NOWARN
3737
long f = arr[i][j][k][l]; // NOWARN
3838
}
39-
f(&arr);
39+
f(&arr);
4040

4141
for (int i = 0; i < len1; i++)
4242
for (int j = 0; j < len2; j++)

0 commit comments

Comments
 (0)