Minor indention change.

This commit is contained in:
Christoffer Lerno
2022-10-12 11:53:49 +02:00
parent 959c418e8b
commit fc41179636

View File

@@ -208,6 +208,6 @@ macro bool is_power_of_2(x)
macro next_power_of_2(x)
{
$typeof(x) y = 1;
while (y < x) y += y;
while (y < x) y += y;
return y;
}