mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
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:
parent
6b6b64abe0
commit
4da2bd306b
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user