small cleanup and first test of git-svn !

git-svn-id: svn://localhost/gambas/trunk@1540 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Laurent Carlier 2008-09-04 21:49:22 +00:00
parent 297f31a2b5
commit 85c3a1013b

View file

@ -607,9 +607,8 @@ static int power_of_two(int input)
int value = 1;
while ( value < input )
{
value <<= 1;
}
return value;
}