Another tiny update to the coding standard just to make a point a little clearer.

This commit is contained in:
Gregory Nutt 2018-08-21 15:30:50 -06:00
parent 07ef3fe018
commit 993888fc97

View File

@ -2050,9 +2050,12 @@ ptr = (FAR struct somestruct_s *)value;
int e = c + d;
for (int i = 0; i < b; i++)
for (int i = 0; i < a; i++)
{
e += d;
for (int j = 0; j < b; j++)
{
e += j * d;
}
}
return e / a;
@ -2073,9 +2076,14 @@ ptr = (FAR struct somestruct_s *)value;
d = b;
e = c + d;
for (i = 0; i < b; i++)
for (i = 0; i < a; i++)
{
e += d;
int j;
for (j = 0; j < b; j++)
{
e += j * d;
}
}
return e / a;