alpha: Avoid comma separated statements

Use semicolons and braces.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Joe Perches 2020-08-25 04:55:59 +00:00 committed by Matt Turner
parent 6b6b64abe0
commit 4da2bd306b

View File

@ -127,10 +127,12 @@ again:
goto again;
}
if (ptes[p+i])
p = ALIGN(p + i + 1, mask + 1), i = 0;
else
if (ptes[p+i]) {
p = ALIGN(p + i + 1, mask + 1);
i = 0;
} else {
i = i + 1;
}
}
if (i < n) {