We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe82ce commit 27a61fcCopy full SHA for 27a61fc
tests/regression/86-relational-array-oob/06-multi-dimensional-global2.c
@@ -9,11 +9,11 @@ int len2;
9
int len3;
10
int len4;
11
12
-int f(long *** arr[])
+int f(long ***arr[])
13
{
14
long ***t;
15
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
+ t = arr[i]; // TODO NOWARN for some reason eval_offset doesn't know the index epxression here
17
}
18
19
int main()
@@ -36,7 +36,7 @@ int main()
36
arr[i][j][k][l] = 3; // NOWARN
37
long f = arr[i][j][k][l]; // NOWARN
38
39
- f(&arr);
+ f(&arr);
40
41
42
for (int j = 0; j < len2; j++)
0 commit comments