(svn r3512) Yet more whitespace fixes (mostly by Rubidium)

This commit is contained in:
peter1138
2006-02-01 09:08:25 +00:00
parent 1c3e8630fe
commit 49e51cf27f
5 changed files with 26 additions and 27 deletions

View File

@@ -944,7 +944,7 @@ static int PickRandomBit(uint bits)
num = RandomRange(num);
for(i=0; !((bits & 1) && ((int)--num) < 0); bits>>=1,i++);
for (i = 0; !((bits & 1) && ((int)--num) < 0); bits >> = 1, i++);
return i;
}